aspose file tools
The moose likes Threads and Synchronization and the fly likes Why wait and notify are methods of Object? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Threads and Synchronization
Reply Bookmark "Why wait and notify are methods of Object?" Watch "Why wait and notify are methods of Object?" New topic
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.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Why wait and notify are methods of Object?
 
Similar Threads
Interview q
Threads
wait, notify and notifyAll
wait() and notify() methods
Object Class