must1958

Finally

Sep 26th, 2018
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  Exception Handling ยป Finally
  2. This example demonstrates the use of finally keyword. finally creates a block of code that will be executed after a try/catch block has completed and before the code following the try/catch block. This is useful for closing file and freeing up any other resources that might have been allocated at the beginning of a method with the intent of disposing of them before returning. The finally clause is optional.
  3. Pass:2008
  4. Demo url:http://zipansion.com/442TP
Add Comment
Please, Sign In to add comment