Hello I just had phone interview I was not able to answer this question and would like to know the answer, I believe, its advisable to reach out for answers that you don't know. Please encourage me to understand the concept.
His question was:
"The synchronized block only allows one thread a time into the mutual exclusive section. When a thread exits the synchronized block, the synchronized block does not specify which of the waiting threads will be allowed next into the mutual exclusive section? Using synchronized and methods available in Object, can you implement first-come, first-serve mutual exclusive section? One that guarantees that threads are let into the mutual exclusive section in the order of arrival? "
public class Test {
public static final Object obj = new Object();
public void doSomething() {
synchronized (obj) {
// mutual exclusive section
}
}
}
Objectand thesynchronizedkeyword." I am curious to know, though: are you only allowed to usesynchronizedand methods inObject? – Matt Ball Jun 30 '11 at 22:57wait()andnotify()alongside a FIFO queue – ratchet freak Jun 30 '11 at 23:00LinkedBlockingQueuebut I'm not sure if that would still fall under the interviewer's definition of "Using synchronized and methods available in Object." (btw queues are by definition FIFO) – Matt Ball Jun 30 '11 at 23:03