タスクは、スレッドセーフな独自のメッセージキューを実装することです。
私のアプローチ:
public class MessageQueue {
/**
* Number of strings (messages) that can be stored in the queue.
*/
private int capacity;
/**
* The queue itself, all incoming messages are stored in here.
*/
private Vector<String> queue = new Vector<String>(capacity);
/**
* Constructor, initializes the queue.
*
* @param capacity The number of messages allowed in the queue.
*/
public MessageQueue(int capacity) {
this.capacity = capacity;
}
/**
* Adds a new message to the queue. If the queue is full,
* it waits until a message is released.
*
* @param message
*/
public synchronized void send(String message) {
//TODO check
}
/**
* Receives a new message and removes it from the queue.
*
* @return
*/
public synchronized String receive() {
//TODO check
return "0";
}
}
キューが空でremove()を呼び出す場合は、別のスレッドがsend()メソッドを使用できるようにwait()を呼び出します。それぞれ、反復のたびにnotifyAll()を呼び出す必要があります。
質問:それは可能ですか?つまり、オブジェクトの1つのメソッドでwait()と言うと、同じオブジェクトの別のメソッドを実行できるということですか?
そして別の質問:それは賢いようですか?