• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Threads from OCA/OCP Java SE7 Programmer I&II Study Guide

 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am studying OCP Java SE7 Programmer II exam. OCA/OCP Java SE7 Programmer I&II Study Guide  by Kathy Sierra and Bert Bates. I am in Chapter 13 Threads now. I came across with the codes from the book, which doesn't seem to be working. I could not figure out why. The following are the codes.



And the output is>>>



As you see the code doesn't reach to "The wait is over". Apparently notifyAll() does not really notify the thread in the Reader class. What am I missing? Thank you for your time in advance.
 
Waylon Wolf
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I figured that out. The waiting thread has to start before the notifing thread. That is.



 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic