|
|
|
|
|
by Jtsummers
2199 days ago
|
|
Caveat: I haven't touched Java in years, and that was not even a current version of Java at the time (well, it was old code made to run on the then-current JVM, but not utilizing any features introduced after 2006 or so). I'm assuming these are good resources, but I'm not sure. https://developer.ibm.com/technologies/java/series/java-8-id... List of articles relating to idiomatic Java 8 code. Some of these touch on using lambdas and functional idioms. https://developer.ibm.com/articles/j-java8idioms3/ This one shows a few of the functional-styled methods that can be used (foreach, takewhile, iterate, etc.). https://developer.ibm.com/articles/j-java8idioms2/ Shows the collection pipeline pattern. I have experience with the same things in C# and other languages, the way they're using them in these articles are what I'd expect from a comparable API. |
|