Java 9 tutorial
Here is Java 9 tutorial and Java 9 features with examples and detail explanation like Java 9 module system, Java 9 jshell, Java 9 process API improvements, Java 9 reactive…
Here is Java 9 tutorial and Java 9 features with examples and detail explanation like Java 9 module system, Java 9 jshell, Java 9 process API improvements, Java 9 reactive…
Here is Java Sort Map By Key example and Java Sort Map By Value example: Table of ContentsJava Sort Map By Key ExampleOutput:Java Sort Map By Value ExampleOutput: Java Sort Map…
This article contains Java 8 Stream sorted Examples. Java 8 Stream provide two version of sorted method to sort given stream to natural order and sort stream based on comparator….
“flatMap name itself suggest that it is a combination of a map and a flat. It means that first we apply Function to our element and then flatten it” Stream.map…
This article contains different ways for Java 8 convert Array to Stream i.e. Stream.of and Array.stream using those methods, Array can be converted in Stream to perform iteration easily. Table…
Here is example of Java 8 convert Stream to Array like using ::new operator and IntFunction arguments. Stream contains toArray function using that we can convert Stream to Array. Example 1:…
This article contains Java 8 List to Map using stream example like List to Map using toMap, List to Map using parallel Stream. Table of ContentsExample 1: List to Map…
This article contains Java 8 Convert Map to List using Stream Example like Map to Value List, Map to key List, Map filter based on key, Map filter based on…
Java 9 scope of public access specifier has been changed. Because of a modular system in java public access specifier scope has been changed. Its little bit interesting let see…
Java 9 introduce module system but in modules system mainly we need to take care about accessibility of data, In another word we need to take care about which data…