Implement a queue class whose add and remove methods are


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 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 100 iteration

Request for Solution File

Ask an Expert for Answer!!
C/C++ Programming: Implement a queue class whose add and remove methods are
Reference No:- TGS01249265

Expected delivery within 24 Hours