Hi,
If the main thread quits before child finishes its work, and child tries to notify, what will happen?
Thanks
Hi,
If the main thread quits before child finishes its work, and child tries to notify, what will happen?
Thanks
If you call notify()
on an object that no other thread called wait()
on, then the notify
call will have no effect.