码迷,mamicode.com
首页 > 其他好文 > 详细

使用lock和condition实现的阻塞队列-字符串

时间:2014-05-16 05:11:43      阅读:323      评论:0      收藏:0      [点我收藏+]

标签:class   c   int   a   strong   使用   

在jdk 的API中提供了一个字符串的阻塞队列 :

class BoundedBuffer {
   final Lock lock = new ReentrantLock();
   final Condition notFull  = lock.newCondition(); 
   final Condition notEmpty = lock.newCondition(); 

   final Object[] items = new Object[100];
   int putptr, takeptr, count;

   public void put(Object x) throws InterruptedException {
     lock.lock();
     try {
       while (count == items.length) 
         notFull.await();
       items[putptr] = x; 
       if (++putptr == items.length) putptr = 0;
       ++count;
       notEmpty.signal();
     } finally {
       lock.unlock();
     }
   }

   public Object take() throws InterruptedException {
     lock.lock();
     try {
       while (count == 0) 
         notEmpty.await();
       Object x = items[takeptr]; 
       if (++takeptr == items.length) takeptr = 0;
       --count;
       notFull.signal();
       return x;
     } finally {
       lock.unlock();
     }
   } 
 }

使用lock和condition实现的阻塞队列-字符串,布布扣,bubuko.com

使用lock和condition实现的阻塞队列-字符串

标签:class   c   int   a   strong   使用   

原文地址:http://www.cnblogs.com/zjf4911/p/3726418.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!