Berkeley CSUA MOTD:Entry 37446
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/04/04 [General] UID:1000 Activity:popular
4/4     

2005/5/2-3 [Computer/SW/Languages/Java] UID:37446 Activity:nil
5/2     Could someone offer a tip on how to write thread-safe (Java) code?
        I have a class which performs some work, and I want to allow only one
        thread to be in the do_work function, but allow many threads to enqueue
        work.  How would I do this?
        class Worker {
          private void dowork(Work w) {...}
          public void enqueuework(Work w) { ...}
          private Queue workqueue; // A FIFO queue of Work objects.
          ...
        }
        \_ Look into the synchronized keyword. If nowhere else, the Java
           language spec has an acceptable description.
        \_ The above answer isn't quite enough. Here's how you do it
           in general, gross terms, you'll have to do some tweaking and
           look up the Java-specifics yourself:
        \_ The above answer isn't quite enough. This isn't 100% correct,
           but it should point you in the right direction:
                -- The do work thread should start running in a loop
                   which locks a synch variable, process anything
                   in the queue, and then waits on condition variable
                -- The enqueue method should lock the synch variable
                   put stuff into the queue, and signal the condition
                   variable
           See also: http://csua.org/u/bxq (java.sun.com)
           - ciyer
           \_ Shouldn't it be sufficient to use the synchronized keyword on
              the doWork method?  The enqueuework method doesn't need to
              be synchronized, right?
              \_ It does if you're writing unsynchronized data structures
                 in the enqueueing operation.
2025/04/04 [General] UID:1000 Activity:popular
4/4     

You may also be interested in these entries...
2013/4/29-5/18 [Computer/SW/Languages/C_Cplusplus, Computer/SW/Compilers] UID:54665 Activity:nil
4/29    Why were C and Java designed to require "break;" statements for a
        "case" section to terminate rather than falling-through to the next
        section?  99% of the time poeple want a "case" section to terminate.
        In fact some compilers issue warning if there is no "break;" statement
        in a "case" section.  Why not just design the languages to have
        termination as the default behavior, and provide a "fallthru;"
	...
2013/5/1-18 [Computer/SW/Languages/Java, Computer/Theory] UID:54669 Activity:nil
5/1     What's the difference between CS and Computer Engineering?
        http://holykaw.alltop.com/top-ten-paying-degrees-for-college-graduates
        \_ One is science and the other is engineering.
        \_ From http://en.wikiquote.org/wiki/Computer_science
           'A folkloric quotation ... states that "computer science is no more
           about computers than astronomy is about telescopes."  The design
	...
2013/3/5-26 [Computer/SW/Languages/Java] UID:54618 Activity:nil
3/5     Three emergency Java updates in a month. Why do I have a feeling
        that the third one won't be the last one?
        \_ Bingo!
	...
2012/12/18-2013/1/24 [Computer/SW/Languages/Perl] UID:54561 Activity:nil
12/18   Happy 25th birthday Perl, and FUCK YOU Larry Wall for fucking up
        the computer science formalism that sets back compilers development
        back for at least a decade:
        http://techcrunch.com/2012/12/18/print-happy-25th-birthday-perl
        \_ I tried to learn Perl but was scared away by it.  Maybe scripting
           lanauages have to be like that in order to work well?
	...
2012/12/4-18 [Computer/SW/Languages/Java] UID:54544 Activity:nil
12/4    Holy cow, everyone around me in Silicon Valley is way beyond
        middle class according to Chinni's definition:
        http://en.wikipedia.org/wiki/American_middle_class
        \_ Let's set our goals higher:
           http://en.wikipedia.org/wiki/Upper_middle_class_in_the_United_States
           \_ How about this one?
	...
2012/10/29-12/4 [Science/Disaster, Computer/SW/Languages/Java, Politics/Domestic/President/Bush] UID:54516 Activity:nil
10/29   Go Away Sandy.
        \_ Sorry, Coursera is performing preventive maintenance for this
           class site ahead of Hurricane Sandy. Please check back in 15 minutes.
           class site ahead of Hurricane Sandy. Please check back in 15
           minutes.
        \_ Bitch.
	...
Cache (2865 bytes)
csua.org/u/bxq -> java.sun.com/docs/books/tutorial/essential/threads/waitAndNotify.html
Feedback Form Trail: Essential Java Classes Lesson: Threads: Doing Two or More Tasks At Once Using the notifyAll and wait Methods Let's investigate how the code in CubbyHole's put and get methods helps the Producer and the Consumer coordinate their activities. The CubbyHol e stores its value in a private member variable called contents. CubbyH ole has another private member variable, available, that is a boolean. The available variable is true when the value has been put but not yet gotten and is false when the value has been gotten but not yet put. Her e's one possible implementation for the put and get methods: public synchronized int get() { //won't work! Wh at happens if the Producer hasn't put anything in the CubbyHole and ava ilable isn't true? Similarly, if the Produ cer calls put before the Consumer got the value, put doesn't do anythin g You really want the Consumer to wait until the Producer puts something i n the CubbyHole and the Producer to notify the Consumer when it's done so. Similarly, the Producer should wait until the Consumer takes a valu e (and notifies the Producer of its activities) before replacing it wit h a new value. The two threads must coordinate more fully and can use O bject's wait and notifyAll methods to do so. Here are the new get and put implementations that wait on and notify eac h other of their activities: public synchronized int get() { while (available == false) { try { //wait for Producer to put value wait(); The wait m ethod relinquishes the lock held by the Consumer on the CubbyHole (ther eby allowing the Producer to get the lock and update the CubbyHole) and then waits for notification from the Producer. When Producer puts some thing in the CubbyHole, it notifies Consumer by calling notifyAll. The Consumer then comes out of the wait state and the get method returns th e value in the CubbyHole. It waits for the Consumer thr ead to consume the current value before allowing the Producer to produc e a new one. The notifyAll method wakes up all threads waiting on the object in quest ion (in this case, the CubbyHole). The Objec t class also defines the notify method, which arbitrarily wakes up one of the threads waiting on this object. There are the three versions of the wait method contained in the Object class: wait() Waits indefinitely for notification. wait(long timeout, int nanos) Waits for notification or until timeout milliseconds plus nanos nanoseconds have elapsed. Note: Besides using these timed wait methods to synchronize threads, yo u also can use them in place of sleep. Both wait and sleep delay for th e requested amount of time. You can easily wake up wait with a notify b ut a sleeping thread cannot be awakened prematurely. This doesn't matte r too much for threads that don't sleep for long, but it could be impor tant for threads that sleep for minutes at a time.
Cache (1974 bytes)
java.sun.com
From Rockets to Power Plants to Automobiles: A Conversation with Real-Time Specification for Java Expert, Greg Bollella Sun Microsystems Distinguished Engineer, Greg Bollella, discusses application of the Real-Time Specification for Java (RTSJ) to physical systems such as rockets, power plants, and automobiles. Models of Innovation: A Conversation with Sun Microsystems' Paul Pangaro Distinguished Market Strategist, Paul Pangaro, talks about cybernetics, the nature of conversation, and Sun's commitment to co-evolving with developers. The J2EE 14 SDK and Sun Java Application Server Platform Edition 8 Read the transcript of the April 27 chat on the J2EE 14 SDK and its integral component, Sun Java System Application Server Platform Edition 8 Find out what's new and exciting about this implementation of the J2EE 14 Platform. Upcoming Java Live Chats May 20: J2SE 15 Monitoring and Management Learn about J2SE 15's significant features for monitoring and management in this chat with J2SE product marketing manager Blake Connell, and J2SE engineers Mandy Chung and Sanjay Radia. Java Community Process (JCP) is the way the Java platform evolves. It's an open organization of international Java developers and licensees whose charter is to develop and revise Java technology specifications, reference implementations, and technology compatibility kits. Struts is a popular framework for building Web applications based on Model-View-Controller (MVC) design principles. Become a member of JavaOne Online and view a multimedia session on the architecture, programming models, APIs, and tools of Struts. JavaOne Online Program This educational and informative site focuses on Java technology and the developer community. Even if you have never attended the JavaOne conference in person, you can still become a part of the JavaOne conference community. Conferences and interaction with your colleagues are key ways for you to pick up more knowledge and build relationships.