通过实现Rmmable接口创建线程,请在下面横线处填写代码完成此程序。 public class ThreadTest { public static void main(String args []) {

admin2008-02-11  76

问题 通过实现Rmmable接口创建线程,请在下面横线处填写代码完成此程序。
    public class ThreadTest
   {
         public static void main(String args [])
         {
              Thread testObj1 = new Thread (new Hello ());
              Thread testObj2 = new Thread (new Hello ());
              testObj 2.start ( );
         }
   }
   class Hello implements Runnable
   {
         int j;
         public void run()
         {
              System.out.println("Hello" + j ++);
         }
    }

选项

答案testObj 1.start();

解析
转载请注明原文地址:https://kaotiyun.com/show/M6np777K
0

相关试题推荐
最新回复(0)