Java implementation of producer/consumer issues

Source: Internet
Author: User

Implementations similar to the Java blocking queue:

 Public classBlockingqueue {PrivateList queue =NewLinkedList (); Private intLimit = 10;//Buffer size PublicBlockingqueue (intlimit) {     This. Limit =limit; }   Public synchronized voidEnqueue (Object Item)throwsinterruptedexception { while( This. queue.size () = = This. Limit)    {Wait (); }    if( This. queue.size () = = 0) {notifyall (); }     This. Queue.add (item); }   Public synchronizedObject dequeue ()throwsinterruptedexception{ while( This. queue.size () = = 0) {wait (); }    if( This. queue.size () = = This. Limit)    {Notifyall (); }    return  This. Queue.remove (0); }}

It must be noted that the Notifyall method is called only when the size of the queue equals the upper limit (limit) or the lower bound (0) within the Enqueue and Dequeue methods. If the size of the queue is neither equal to the upper bound nor equal to the lower limit, any thread that calls the Enqueue or Dequeue method does not block and can add or remove elements to the queue normally.

Java implementation of producer/consumer issues

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.