ContactUs :

Please send your Questions & Answers or Feedback to "mohan@javabook.org"

What is try-with-resources in java?

One of the Java 7 features is try-with-resources statement for automatic resource management. Before Java 7, there was no auto resource management and we should explicitly close the resource. Usually, it was done in the finally block of a try-catch statement. This approach used to cause memory leaks when we forgot to close the resource.

From Java 7, we can create resources inside try block and use it. Java takes care of closing it as soon as try-catch block gets finished. 
Related Posts Plugin for WordPress, Blogger...
Flag Counter