通过实现Runnable接口创建线程,请在画线处加入正确的代码完成此程序【 】。 public class ThreadTest { public static void main(String args[ ]) {

admin2010-02-22  24

问题 通过实现Runnable接口创建线程,请在画线处加入正确的代码完成此程序【  】。
   public class ThreadTest
   {
     public static void main(String args[ ])
     {
         Thread t1=new Thread(new Hello());
         Thread t2=new Thread(new Hello());
         ______;
         t2.start();
     }
   }
   class Hello implements Runnable
   {
     int i;
     public void run()
     {
         while(true)
         {
             System.out.println("Hello"+i++);
             if(i==5) break;
         }
     }
   }

选项

答案t1.start();

解析 题中Hello类实现了Runnable接口,在ThreadTest类的main()方法中,Hello类的两个实例对象分别创建了t1、t2两个线程,并将线程启动。那么程序体中的画线处应该是将t1线程启动(调用方法start())。
转载请注明原文地址:https://kaotiyun.com/show/BOnp777K
0

随机试题
最新回复(0)