本帖最后由 hejinzhong 于 2014-7-21 00:11 编辑
- <p>class Resource
- {
- private String name;
- private int count = 1;
- private boolean flag;
- public synchronized void set(String name)
- {
- while(flag)//这里if可以吗?为啥毕姥爷视频中,讲解会有线程t1和t2都滞留在这里。难道不是一个锁?假如是一个锁的话,t1进来后,函数上锁后,t2就不可能进了函数。甚至可以说3,4线程都是不可能执行的,因为所有线程都是用的对象this锁,而对象是唯一的res。只有下次线程1获得资格执行玩后,其他线程才可能进了函数。总的来说,我的意思是这期间2,3,4线程可以获取过资格,但是不能了进函数。
- try{wait();}catch (Exception e){}
- this.name = name+"-----"+count++;
- System.out.println(Thread.currentThread().getName()+"--生产者--"+this.name);
- flag = true;
- this.notifyAll();
- }
- public synchronized void out()
- {
- while(!flag)//if?讲解会有线程t3和t4都滞留在这里。难道不是一个锁?和上面一样的问题。
- try{wait();}catch (Exception e){}
- System.out.println(Thread.currentThread().getName()+"--消费者-------"+name);
- flag =false;
- this.notifyAll();
- }
- }
- class Producer implements Runnable
- {
- private Resource res;
- Producer(Resource res)
- {
- this.res=res;
- }
- public void run()
- {
- while(true)
- res.set("--商品--");
- }
- }
- class Consumer implements Runnable
- {
- private Resource res;
- Consumer(Resource res)
- {
- this.res=res;
- }
- public void run()
- {
- while(true)
- res.out();
- }
- }
- class ProducerConsumerDemo
- {
- public static void main(String[] args)
- {
- Resource res = new Resource();
- Producer pro = new Producer(res);
- Consumer con = new Consumer(res);
- Thread t1 = new Thread(pro);
- Thread t2 = new Thread(pro);
- Thread t3 = new Thread(con);
- Thread t4 = new Thread(con);
- t1.start();
- t2.start();
- t3.start();
- t4.start();
- }
- }</p>
复制代码 |
|