我正在研究scjp,我的问题如下:
public class Bunnies extends Thread{
public static void main(String[] args) {
Thread t = new Thread(new Bunnies());
Thread t1 = new Thread(new Bunnies());
t.start();
t1.start();
}
public void run()
{
for(int i=0; i<3; i++)
{
System.out.println(Thread.currentThread().getName()+" ");
}
}
}
当我运行上面的程序时,我得到如下的 o/p:
Thread-1
Thread-1
Thread-1
Thread-3
Thread-3
Thread-3
这里我不明白为什么 Thread-2 没有显示在这里,只有 Thread 1&3。
请解释。