Quantcast
Channel: Feed Blog
Viewing all articles
Browse latest Browse all 130

More cool JDK7 features.

$
0
0

Interesting review of some JDK 7 features:

I think the main one I like is the try-with-resource hack:

private String example() throws IOException {
        try(BufferedReader reader = new BufferedReader(...) {
             return reader.readLine();
        }
    }

Viewing all articles
Browse latest Browse all 130

Trending Articles