Stavo leggendo le specifiche JVM per cercare di capire come gestire correttamente i monitor. L'esempio che danno in the relevant section assomiglia a questo:Come si esce correttamente da un monitor in bytecode?
0 aload_1 // Push f
1 dup // Duplicate it on the stack
2 astore_2 // Store duplicate in local variable 2
3 monitorenter // Enter the monitor associated with f
4 aload_0 // Holding the monitor, pass this and...
5 invokevirtual #5 // ...call Example.doSomething()V
8 aload_2 // Push local variable 2 (f)
9 monitorexit // Exit the monitor associated with f
10 goto 18 // Complete the method normally
13 astore_3 // In case of any throw, end up here
14 aload_2 // Push local variable 2 (f)
15 monitorexit // Be sure to exit the monitor!
16 aload_3 // Push thrown value...
17 athrow // ...and rethrow value to the invoker
18 return // Return in the normal case
Exception table:
From To Target Type
4 10 13 any
13 16 13 any
io non riesco a capire il motivo per cui è necessaria la seconda voce della tabella eccezione. Se viene generata un'eccezione da monitorexit
, desidero veramente provare ad uscire di nuovo dal monitor? Eventuali eccezioni generate per quanto posso dire sono NullPointerException
e IllegalMonitorStateException
.
Interessante! C'è un bug Java su di esso, chiuso come "non un problema": http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4414101 –