class Ticket2 implements Runnable
{
private int tick=100;
public void run()
{
while(true)………………………………………………………………………………………………………………在这里的while(true)有什么作用??
去除了之后,运行结果只有四行,每一个线程运行一次??为什么
{
if(tick>0)
{
System.out.println(Thread.currentThread()+"^^^^^tick run "+tick--);
}
}
}
}