在下面,如果异常发生在syncMethod2()那么我如何解锁锁定对象?
public class ReEntrantLock {
ReentrantLock lock = new ReentrantLock();
void syncMethod1() {
lock.lock();
syncMethod2(); // throw new NullPointerException();
lock.unlock();
}
}
答案 0 :(得分:6)
public class ReEntrantLock {
ReentrantLock lock = new ReentrantLock();
void syncMethod1() {
lock.lock();
try {
syncMethod2();
} finally {
lock.unlock();
}
}
}
它就在documentation ...
中答案 1 :(得分:2)
您使用try
- finally
:
lock.lock();
try {
syncMethod2(); // throw new NullPointerException();
} finally {
lock.unlock();
}
该模式也在the ReentrantLock
JavaDoc中描述。