Use this tag for questions specific to Java 8 which is version 8 (internal number 1.8) of the Java platform, released on 18 March 2014.
I want to do some programming with the latest JavaFX, which requires Java 8. I'm using IntelliJ 13 CE and Mac OS …
java macos java-8 installationI want to translate a List of objects into a Map using Java 8's streams and lambdas. This is how …
java lambda java-8 java-streamUsing IntelliJ IDE can't compile any projects. Screenshots of settings below: Used JDK: Project SDK and Language level: Language Level: …
java intellij-idea java-8What is the easiest/shortest way to convert a Java 8 Stream into an array?
java arrays java-8 java-streamI've just started playing with Java 8 lambdas and I'm trying to implement some of the things that I'm used to …
java java-8 java-streamIn Java 8, what's the difference between Stream.map() and Stream.flatMap() methods?
java java-8 java-streamI want to sum a list of integers. It works as follows, but the syntax does not feel right. Could …
java java-8 java-stream