| Author |
Why wait and notify are methods of Object?
|
vikasids sharma
Ranch Hand
Joined: Aug 01, 2003
Posts: 157
|
|
Why wait(), notify() and notifyAll() are methods of Object class and not Thread class when these methods are called for threads only? Thanks, Vikas
|
Thanks
Vikas Sharma
SCJP(1.4)
|
 |
Timmy Marks
Ranch Hand
Joined: Dec 01, 2003
Posts: 226
|
|
The methods are not only called on Threads. The purpose of these methods is to provide a way to prevent an Object from being accessed from two different Threads at the same time. These methods allow Threads to have exclusive access to an object for the duration of an operation that should be considered atomic. The reason they are in the Object class is because we must be able to make sure that any Object can be protected from concurrent access.
|
 |
 |
|
|
subject: Why wait and notify are methods of Object?
|
|
|