|
|
Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
Within a program, the code segments that access the same object from separate, concurrent threads are called critical sections. A critical section can be a block or a method and is identified with thesynchronizedkeyword. The Java platform associates a lock with every object and the lock is acquired upon entering a critical section.In the producer-consumer example, the put and get methods of
CubbyHole.javaare the critical sections. TheConsumershould not access theCubbyHolewhen theProduceris changing it, and theProducershould not modify it when theConsumeris getting the value. Soputandgetin theCubbyHoleclass should be marked with thesynchronizedkeyword.Here’s a code skeleton for the
CubbyHoleclass:The method declarations for bothpublic class CubbyHole { private int contents; private boolean available = false; public synchronized int get(int who) { ... } public synchronized void put(int who, int value) { ... } }putandgetcontain thesynchronizedkeyword. Whenever control enters a synchronized method, the thread that called the method locks the object whose method has been called. Other threads cannot call a synchronized method on the same object until the object is unlocked.Thus, when it calls
CubbyHole'sputmethod, TheProducerlocks theCubbyHole, thereby preventing theConsumerfrom calling theCubbyHole'sgetmethod:When thepublic synchronized void put(int value) { //CubbyHole locked by the Producer ... //CubbyHole unlocked by the Producer }putmethod returns, theProducerunlocks theCubbyHole.Similarly, when the
ConsumercallsCubbyHole'sgetmethod, it locks theCubbyHole, thereby preventing theProducerfrom callingput:The acquisition and release of a lock is done automatically and atomically by the Java run-time system. This ensures that race conditions cannot occur in the underlying implementation of the threads, thus ensuring data integrity.public synchronized int get() { // CubbyHole locked by the Consumer ... // CubbyHole unlocked by the Consumer }Synchronization isn't the whole story. The two threads must also be able to notify one another when they've done their job. Learn more about that after a brief foray into reentrant locks.
|
|
Start of Tutorial > Start of Trail > Start of Lesson |
Search
Feedback Form |
Copyright 1995-2005 Sun Microsystems, Inc. All rights reserved.