写的一个卖票线程,代码如下:
- class Ticket implements Runnable
- {
- private int num=100;
- Object obj=new Object();//obj即为同步锁
- Boolean flag=true;//flag用于跳出while循环
- public void run()
- {
- synchronized(obj)
- {
- while(flag)
- {
- if(num>0)
- {
- try{Thread.sleep(100);}catch(Exception e){}
- System.out.println(Thread.currentThread().getName()+"...sale:"+num--);
- }
- else
- {
- flag=false;
- }
- }
- }
- }
- }
- class Thread1
- {
- public static void main(String[] args)
- {
- Ticket t=new Ticket();
- Thread t1=new Thread(t);
- Thread t2=new Thread(t);
- Thread t3=new Thread(t);
- Thread t4=new Thread(t);
- t1.start();
- t2.start();
- t3.start();
- t4.start();
- }
- }
复制代码
可是在执行时,一直都只有线程0被执行了,其他三个线程都没有被执行,即使将num设置为1000也是如此,不知道为什么,所以求各位大神帮忙解答。
|