📜  java代码示例中finally块的重要性

📅  最后修改于: 2022-03-11 14:52:15.693000             🧑  作者: Mango

代码示例1
Finally block is used for cleaning up of resources such as closing connections, 
sockets etc. if try block executes with no exceptions then finally is called 
after try block without executing catch block. If there is exception thrown in 
try block finally block executes immediately after catch block.
If an exception is thrown,finally block will be executed even if 
the no catch block handles the exception.