【单选题】下面程序的功能是统计字符串中“array”的个数,在程序的空白处应填入的正确选项是 public class FindKeyWords{ public static void main(String[]args) { String text='An array is a data structur that stores a collection of' +'values of the same ...
【简答题】下面程序的功能是创建一个显示5个“Hello!”的线程并启动运行。请将程序补充完整。 public class ThreadTest extends Thread { public static void main(String args[]) { ThreadTest t=new ______; t.start(); } public void run() { int i=0; while(tr...