Why are the wait() and notify() methods declared in the Object class, rather than the Thread class?
|
|
||||
|
|
|
Because, you wait on a given Object (or specifically, its monitor) to use this functionality. I think you may be mistaken on how these methods work. They're not simply at a Thread-granularity level, i.e. it is not a case of just calling This is good because otherwise concurrency primitives just wouldn't scale; it would be equivalent to having global namespaces, since any calls to Edit: Or to address it from another perspective - I expect from your question you thought you would get a handle to the waiting thread and call |
|||||
|
|
Because only one thread at a time can own an object's monitor and this monitor is what the threads are waiting on or notifying. If you read the javadoc for |
|||||
|
|
|
The most simple and obvious reason is that any Object (not just a thread) can be the monitor for a thread. The wait and notify are called on the monitor. The running thread checks with the monitor. So the wait and notify methods are in Object and not Thread |
|||
|
|
|
The mechanism of synchronization involves a concept - monitor of an object. When wait() is called, the monitor is requested and further execution is suspended until monitor is acquired or InterruptedException occurs. When notify() is called, the monitor is released. Let's take a scenario if wait() and notify() were placed in Thread class instead of Object class. At one point in the code,
When currentThread.wait() is called, monitor of Thus calling wait() and notify() methods on Object class(or its subclasses) provides greater concurrency and that's why these methods are in Object class, not in Thread class. |
|||
|
|
|
Read here for an explanation of wait and notify. It would be better to avoid these however in your applications and use the newer java.util.concurrent package. |
|||
|
|