本帖最后由 昝文萌 于 2013-8-26 08:10 编辑
在毕老师讲的生产者和消费者问题里,用了同步函数,生产者和消费者两个同步函数用的是同一把锁this,每个同步函数里都有等待唤醒机制,都用了wait(),但是如果当生产者进入生产者的同步函数后,执行了wait()方法,被阻塞后,它仍然在同步函数里,这样我认为消费者就进不去消费者的同步函数了,因为他们用的是同一把this锁,但是实际上消费者还可以进去进行消费,这个怎么理解!- <p>class ProducerConsumerDemo
- {
- public static void main(String[] args)
- {
- Resource r = new Resource();
- Producer pro = new Producer(r);
- Consumer con = new Consumer(r);
- Thread t1 = new Thread(pro);</p><p>Thread t2 = new Thread(con);
-
- t1.start();
- t2.start();
-
- }
- }
- class Resource
- {
- private String name;
- private int count = 1;
- private boolean flag = false;</p><p>
- public synchronized void set(String name)
- {
- if(flag)
- try{this.wait();}catch(Exception e){}//<font color="#ff0000">假如生产者执行到这里被阻塞,但是生产者进入了同步函数,用的是ths这把锁。所以消费者应该就进不去消费者的同步函数了。但是实际上消费者还是可以进去的,怎么理解!</font>
- this.name = name+"--"+count++;
- System.out.println(Thread.currentThread().getName()+"...生产者.."+this.name);
- flag = true;
- this.notifyAll();
- }
- public synchronized void out()//<font color="red">生产者被阻塞在生产者的同步函数里,但是消费者还可以进入消费者的同步函数,消费者用的也是this这把锁。</font>
- {
- if(!flag)
- try{wait();}catch(Exception e){}
- System.out.println(Thread.currentThread().getName()+"...消费者........."+this.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();
- }
- }
- }</p>
复制代码 |