Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use Lock and Condition to realize producers and consumers

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.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report