finally block in daemon thread

Viewed 3067

I know that finally blocks in deamon threads would not be executed. But my meticulous nature tries to understand why and what happens in JVM so special that it could not call the code under this block.

I think that it somehow related to call stack that it whould not unwind, but don't know how. Can someone please shed some light on this. Thanks.

3 Answers
Related