In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-02-24 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >
Share
Shulou(Shulou.com)06/01 Report--
Today, I will talk to you about how to use Lock and Condition to achieve producers and consumers. Many people may not know much about it. In order to make you understand better, the editor has summarized the following for you. I hope you can get something according to this article.
Comparing the two methods, the Condition approach can specify more precisely which threads are awakened.
Public class MyContainer2 {final private LinkedList lists = new LinkedList (); final private int MAX = 10; / up to 10 elements private int count = 0; private Lock lock = new ReentrantLock (); / / producer condition private Condition producer = lock.newCondition (); / / Consumer condition private Condition consumer = lock.newCondition () Public void put (T t) {try {lock.lock (); while (lists.size () = = MAX) {/ / think about why use while instead of if? Producer.await ();} lists.add (t); + + count; consumer.signalAll (); / / notify the consumer thread to consume} catch (InterruptedException e) {e.printStackTrace () } finally {lock.unlock ();}} public T get () {T t = null; try {lock.lock () While (lists.size () = = 0) {consumer.await ();} t = lists.removeFirst (); count--; producer.signalAll () / / notify the producer to produce} catch (InterruptedException e) {e.printStackTrace ();} finally {lock.unlock ();} return t } public static void main (String [] args) {MyContainer2 c = new MyContainer2 (); / / start the consumer thread for (int item0; I {for (int jobs0; j)
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.