File tree 3 files changed +9
-7
lines changed
src/java.base/share/classes/java/util/concurrent/locks
3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 80
80
*
81
81
* <pre> {@code
82
82
* Lock l = ...;
83
- * l.lock();
83
+ * l.lock(); // lock() as the last statement before the try block
84
84
* try {
85
85
* // access the resource protected by this lock
86
86
* } finally {
87
- * l.unlock();
87
+ * l.unlock(); // unlock() as the first statement in the finally block
88
88
* }}</pre>
89
89
*
90
90
* When locking and unlocking occur in different scopes, care must be
Original file line number Diff line number Diff line change 71
71
* is available even if other threads are waiting.
72
72
*
73
73
* <p>It is recommended practice to <em>always</em> immediately
74
- * follow a call to {@code lock} with a {@code try} block, most
75
- * typically in a before/after construction such as:
74
+ * follow a call to {@code lock} with a {@code try} block, and
75
+ * to <em>always</em> immediately call {@code unlock} as the
76
+ * first statement in the finally block, as follows:
76
77
*
77
78
* <pre> {@code
78
79
* class X {
79
80
* private final ReentrantLock lock = new ReentrantLock();
80
81
* // ...
81
82
*
82
83
* public void m() {
83
- * lock.lock(); // block until condition holds
84
+ * lock.lock(); // lock() as the last statement before the try block
84
85
* try {
85
86
* // ... method body
86
87
* } finally {
87
- * lock.unlock();
88
+ * lock.unlock(); // unlock() as the first statement in the finally block
88
89
* }
89
90
* }
90
91
* }}</pre>
Original file line number Diff line number Diff line change 141
141
*
142
142
* void processCachedData() {
143
143
* rwl.readLock().lock();
144
+ * // Code between the lock() above, and the unlock() below must not throw
144
145
* if (!cacheValid) {
145
146
* // Must release read lock before acquiring write lock
146
147
* rwl.readLock().unlock();
158
159
* rwl.writeLock().unlock(); // Unlock write, still hold read
159
160
* }
160
161
* }
161
- *
162
+ * // Make sure that code that could throw is executed inside the try block
162
163
* try {
163
164
* use(data);
164
165
* } finally {
You can’t perform that action at this time.
0 commit comments