forEach(): method is used to iterate the elements. It takes a single parameter. It is a default method of the Iterable interface. We can pass lambda expressions as an argument.
public class ForEachExample { public static void main(String[] args) { ListString list = new ArrayListString(); list.add("One"); list.add("Two"); list.add("Three"); list.add("Four"); list.forEach(li -> System.out.println(li)); } }
The Functional interface contains only one abstract method and also contains a number of default and static methods. Functional Interface is annotated by @FunctionalInterface annotation, it ensures that the interface contains only one abstract method. Some predefined functional interfaces are: Runnable, Comparable, and ActionListener.
Lambda expressions provide the simplest and shortest way to define anonymous functions. Java Swing frequently uses anonymous functions for event handling. Lambda expressions define the body of Functional Interfaces. Lambda expression introduces a new operator in Java called the ARROW ( -> ) operator.
For more click here lambda-expressions.html
Before JDK 1.8, interfaces could only have abstract methods. From JDK 1.8, interfaces can have default and static methods too. The reason we have default methods in interfaces is to allow the developers to add new methods to the interfaces without affecting the classes that implement these interfaces.
interface FunctInt { public void say(); public static void show(){} public default void display(){} }
For sequential and parallel operations with collections, usually with huge amounts of data, to perform filter/map/reduce-like operations, Java 8 introduces a new feature Stream API that exists in java.util.stream package which provides bulk operations on collections such as sequential or parallel map-reduce transformation.
ListIntegerlist = new ArrayListInteger(); for(int i = 1; i < 10; i++){ list.add(i); } StreamIntegerstream = list.stream(); stream.forEach(p -> System.out.println(p);
Two special methods to generate a stream:
Click here to see java-streams-api.html
To sort array elements in parallel, Java provides a new method parallelSort() in java.util.Arrays package.
Int[] arr = {2, 3, 5, 1, 0, 8, 6, 4, 8}; Arrays.parallelSort(arr);
JShell is a Read-Evaluate-Print Loop (REPL): For interactive mode and immediate results, Java added JShell from JDK 9. It allows us to immediately evaluate the result and make changes as needed.
G:\>jshell | Welcome to JShell -- Version 9-ea | For an introduction type: /help intro jshell> int a = 10 a ==> 10 jshell> System.out.println("a value = " + a ) a value = 1
For sharing common code between two default methods or non-abstract methods, Java 9 introduced “Private Methods”. Private methods cannot be overridden in implementation classes and cannot be abstract.
public interface MyInterface { default void methodFirst(){ init(); } default void methodSecond(){ init(); } private void init(){ System.out.println("Initializing"); } }
Before Java 9, resources could not be declared outside the try-with-resource block. But after Java 9, we can use the resources that are not declared locally.
FileOutputStream file = new FileOutputStream("path"); try(file){....}
But after Java 9 we can use the resources that are not declared locally.
Java 9 provides a new feature called Factory Methods that create immutable or unmodifiable small collections of List, Set, and Map.
Factory method for: List - List.of() ListString list = List.of("One", "Two", "Three", "Four", "Five"); Set - Set.of() SetString set = Set.of("One", "Two", "Three", "Four", "Five"); Map - Map.of() and Map.ofEntries() Map map = Map.of(1,"One",2,"Two",3,"Three");
Now in Java 9, we can use diamond operators with anonymous classes that were not allowed in Java 7.
abstract class TestAnnoy { abstract T show(T a, T b); } public class AnnoyExample { public static void main(String[] args) { TestAnnoyString a = new TestAnnoyString() { String show(String a, String b) { return a+b; } }; String result = a.show("Java","9"); System.out.println(result); } }
Java 9 introduces JLink, allowing us to create a custom JRE to execute small programs. This helps in running only the required modules instead of the default JRE, which runs many unnecessary classes.
From Java 9, underscore (_) can no longer be used as an identifier. It is now a keyword, and using it as an identifier will result in a compile-time error.