[讨论]为什么结果会这样
class SimpleThread extends Thread{
public SimpleThread(String str)
{
super(str);
}
public void run()
{
for(int i=0;i<10;i++)
{
System.out.println(i+" " +getName());
}
System.out.println("DONE!"+getName());
}
}
public class TwoThreadsTest
{
public static void main(String[] args)
{
new SimpleThread("First").start();
new SimpleThread("Second").start();
}
}
运行结果看起来很奇怪。我只能输出0——7,要在最后才输出8,9。请各位看看,多多指教