other-languages

here be heresies and things we have to use for work
pooboy 2018-06-20T17:13:57.000329Z

Guys

pooboy 2018-06-20T17:14:33.000377Z

Can I learn java 8 directly ?

pooboy 2018-06-20T17:14:33.000728Z

Or do I need to learn java7 before

pooboy 2018-06-20T17:14:51.000496Z

Any books that help with java8 for beginners

pooboy 2018-06-20T17:15:14.000016Z

(I know a bit of java, but not enough of java7)

borkdude 2018-06-20T18:04:03.000515Z

You can learn Java 8 directly

borkdude 2018-06-20T18:04:09.000287Z

but even better, learn Clojure 😉

👍 2
1
seancorfield 2018-06-20T18:51:04.000770Z

@suryapjr I found https://www.manning.com/books/java-8-in-action pretty good for getting up to speed on all the new streams/functional stuff in Java 8.

👍 1
seancorfield 2018-06-20T18:54:10.000093Z

I don't recall there being much new to learn in Java 7... the try/resources feature, the nio library stuff... what else, anyone?

sveri 2018-06-20T19:13:22.000368Z

Strings in switch statements.

sveri 2018-06-20T19:14:14.000312Z

You can catch multiple exceptions in one statement

seancorfield 2018-06-20T19:16:17.000411Z

@sveri Yeah, but hardly ground-breaking. The try-with-resources stuff has had a real impact on how Java code can be written.

☝️ 1
sveri 2018-06-20T19:16:57.000028Z

Thats true, just wanted to add that 🙂