Are there any unclear side effects to throwing an exception from within a synchronized clause? What happens to the lock?
private void doSomething() throws Exception {...}
synchronized (lock) {
doSomething();
}
|
Are there any unclear side effects to throwing an exception from within a synchronized clause? What happens to the lock?
|
||||
|
|
|
I see no side-effect. The lock is guaranteed to be terminated in all cases, and an exception is no exception (pun intended). |
||||
|
As you would hope, the lock is released normally. For reference, the appropriate section of the JLS which guarantees this behaviour is ยง 14.19:
('abrupt completion' is defined elsewhere in the JLS to include exceptions from JVM, exceptions raised by |
|||
|