[填空题] 下列程序的功能是创建了一个显示5个“Hello!”的线程并启动运行,请将程序补充完整。
public class Thread Testextends Thread
public static void main(stringargs[])
ThreadTestt=new______;
t.start();
public void run()
inti=0;
while(true)
System.out.println("Hello!");
if(i++==4)break;
[填空题] 下列程序的功能是创建了一个显示5个“Hello!”的线程并启动运行,请将程序补充完整。
public class Thread Testextends Thread
public static void main(stringargs[])
ThreadTestt=new______;
t.start();
public void run()
inti=0;
while(true)
System.out.println("Hello!");
if(i++==4)break;
ThreadTest()
本题考查线程的创建。题目程序的功能是按要求实现输出,通过继承Thread类来创建线程。Thread类本身实现了Runnable接口,所以在java.lang的Thread类的定义中可以发现run()方法,通过继承Thread类,必须重写其中的run()方法定义线程体,然后创建该子类的对象创建线程。题目缺少线程创建的语句,因此应该填写:ThreadTestt=newThreadTest()。类ThreadTest继承了Thread类,并将Thread类的run()方法进行了重写,run()方法的功能是实现输出字符串。
VIP截止日期:2025-01-02 13:48:30
←请使用支付宝扫码支付VIP截止日期:2025-01-02 13:48:30
←请使用微信扫码支付