Question: Implement a Queue class whose add and remove methods are synchronized. Supply one thread, called the producer, which keeps inserting strings into the queue as
Implement a Queue class whose add and remove methods are synchronized. Supply one thread, called the producer, which keeps inserting strings into the queue as long as there are fewer than ten elements in it. When the queue gets too full, the thread waits.
As sample strings, simply use time stamps new Date().toString(). Supply a sec ond thread, called the consumer, that keeps removing and printing strings from the queue as long as the queue is not empty. When the queue is empty, the thread waits. Both the consumer and producer threads should run for 100 iterations.
Step by Step Solution
3.39 Rating (158 Votes )
There are 3 Steps involved in it
Heres a Java example of how to implement Producer Consumer problem by using Queue and synchronized methods java import javautilLinkedList import javau... View full answer
Get step-by-step solutions from verified subject matter experts
