本帖最后由 黑马吕世成 于 2012-10-28 21:30 编辑
class TicketWindow implements Runnable//extends Thread
{
int ticket = 10;
public void run()
{
while(true)
{
if(ticket > 0)
{
// try{Thread.sleep(10);}catch(Exception e){}
System.out.println(Thread.currentThread().getName()+" window : is saling "+ticket--);
}
}
}
}
class TicketsSale
{
public static void main(String[] args)
{
TicketWindow t = new TicketWindow();
new Thread(t).start();
new Thread(t).start();
new Thread(t).start();
}
运行之后的结果见图片!为什么ticket--显示的顺序不是10 9 8 7、、、、这样倒序输出的???
|
|