-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Guruprasad Kulkarni edited this page Dec 25, 2017
·
17 revisions
As Java 8 was hailed as a great release for developers, due to the introduction of Streams, Lambda expressions, Method references, Completable future, Optionals and many others that helped us with write code in functional style. It was really a new way to think how we write code.I agree when Dr. Venkat Subramaniam Says Java 9 modularity is for packaging / deploying the code.
Of course there are things that affect us developers and some of those are the ones that we are here to talk about, But the Project Jigsaw as it is called actually affects . We will look at this in detail once we look at the Java 9 Modularization.
Discussions : Java-9-Discovery
- Java 9 JDK Download
- Visual Studio Code
- Debian / Ubuntu / Linux Mint / derivatives JDK 9 installation
- Graphviz
export PATH=/usr/lib/jvm/java-9-oracle/bin:/usr/lib/jvm/java-9-oracle/db/bin:/usr/lib/jvm/java-9-oracle/jre/bin:$PATH
find com -type f -name "*.class" -print -delete -o -name "*.jar" -print -delete
find com -type f -name "*.java" -print -exec javac {} +
find com -type f -name "*.class" -print | cut -d. -f 1 | tr '/' '.'