12.下列程序的创建了一个线程并运行,请填空,使程序完整。 public class ThreadTest{ public static void main(String args[]){ Hello h=new Hello(); ____; t.start(); } } class Hello implements Runnable{ int i; public void run(){ while(true){ System.out.println("Hello"+i++); if(i==5) break; } } }
输入答案,中间不含空格:
13.包含Swing构件的Applet(小应用程序)应该是____类的子类。
输入答案,中间不含空格:
14.Java对象串行化技术,主要是通过ObjectInputStream类和____类来实现。
输入答案,中间不含空格:
15.请写出下面程序的运行结果 public class Test extends TT{ public static void main(String args[]){ Test t=new Test("Tom."); } public Test(String s){ super(s); System.out.print("How are you?"); } public Test(){ this("I am Jack."); } } class TT{ public TT(){ System.out.print("Hi!"); } public TT(String s){ this(); System.out.print("I am "+s); } }