Java 7 try-with-resources: Difference between revisions
Jump to navigation
Jump to search
Line 11: | Line 11: | ||
Local variables declared as resources in a try-with-resources statement are [[Java_final_Keyword#Overview|implicitly final]]. | Local variables declared as resources in a try-with-resources statement are [[Java_final_Keyword#Overview|implicitly final]]. | ||
<syntaxhighlight lang='java'> | |||
</syntaxhighlight> | |||
=AutoCloseable= | =AutoCloseable= |
Revision as of 22:06, 7 June 2018
External
- https://docs.oracle.com/javase/tutorial/essential/exceptions/tryResourceClose.html
- http://docs.oracle.com/javase/7/docs/technotes/guides/language/try-with-resources.html
Internal
Overview
Local variables declared as resources in a try-with-resources statement are implicitly final.
AutoCloseable
TODO
- Can be used with streams: Java_8_Streams_API#From_Files