Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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();       
}
share|improve this question

2 Answers

up vote 26 down vote accepted

I see no side-effect.

The lock is guaranteed to be terminated in all cases, and an exception is no exception (pun intended).

share|improve this answer
3  
+1 for giving evidence, that sometimes an exception is not an exception :-)) – Andreas_D Jan 7 '10 at 10:05
@Andreas Good one! :-) – KLE Jan 7 '10 at 10:11
@KLE what about an error? What happens if the code throws Stackoverflow or OutOfMemory? – Pacerier Feb 13 '12 at 13:26

As you would hope, the lock is released normally.

For reference, the appropriate section of the JLS which guarantees this behaviour is ยง 14.19:

If execution of the Block completes normally, then the lock is unlocked and the synchronized statement completes normally. If execution of the Block completes abruptly for any reason, then the lock is unlocked and the synchronized statement then completes abruptly for the same reason.

('abrupt completion' is defined elsewhere in the JLS to include exceptions from JVM, exceptions raised by throw, and use of the break, continue, or return statements to transfer outside the block.)

share|improve this answer
if doSomething(); throws a java.lang.StackOverflowError what happens? – Pacerier Feb 13 '12 at 13:27

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.