Implement a Queue class whose add and remove methods are synchronized. Supply on
ID: 3535964 • Letter: I
Question
Implement a Queue class whose add and remove methods are synchronized. Supply one thread, called the producer which inserting strings into the queue as long as there are fewer than 10 elements in it. When the queue gets too full, the thread waits. As sample strings, simply use time stamps new date().toString(). Supply a second 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 1, 000 iterations.
Hint: Use the following to write the program.
public class Queue{…}
Explanation / Answer
asdasddsd
Related Questions
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.