java2018년 9월 3일2 min read

List of New Features and Improvements - Changes in Java 9

A list of new features and improvements introduced in Java 9.

FFrank Advenoh
#java#java8#jdk8
Contents · 1

Java 9

  • Java Platform Module System

  • JEP 222: Jshell - REPL

  • JEP 158: Unified VM logging

    • Provides a common logging system for JVM components (-Xlog)
  • HTML5 Javadoc

    • A tool that can generate APIs in HTML5 format
  • Language Update

    • try-with-resources improvements
    • private interface method
      • Interfaces always had to be defined as public, but private is now also allowed
    • diamond operator
      • The diamond operator is now possible in anonymous inner classes as well
  • New Core Libraries

  • JEP 11 : HTTP 2.0 (Incubator Modules)

  • Client Technologies

    • Multi-Resolution Images
    • TIFF Image I/O Plugins
  • Internationalization

    • Unicode 8.0
    • Java 8 supports Unicode 6.2
    • UTF-8 Properties files
    • Default Localte Data Change

For the various features and improvements added in Java 9, please refer to the following link.

One of the big changes in Java 9 is the introduction of the module system. This is also a big change with much to study, so I plan to post about it as it gets organized.

관련 글