There are various new Features of Java 9 as below:-
1. Java REPL(Read, Evaluate, Print, Loop) is a Jshell Application which evaluates statements, Declarations, expressions and execute simple java programs.
After installing Java 9 setup in your system Jshell console will open in cmd.
2. List and Set interfaces which have of() method to create empty and non empty immutable list and set.
To See my java 8 tutorial the link👉
• Java 8 new Features | java 8 tutorial | ja...
In java 8 version we create immutable list as Collections. unmodifiableList(listObject).
But In java 9 we create immutable List and Set as List.of("Vinay", "yugal").
3. We can create Private Method as well as static methods inside interfaces.