Java 12 Released With Switch Expressions
Written by Kay Ewbank   
Friday, 29 March 2019

Java 12, the latest six-monthly release of Java, has been released with support for Switch Expressions and the inclusion of the Shenandoah low-pause garbage collector. 

There are eight main improvements to the new release, starting with switch expressions. This is still a preview feature, and it extends the switch statement so that it can be used as either a statement or an expression. Whichever form is used, you can use either a traditional or a simplified scoping and control flow behavior.

corretto

 
Oracle says that in addition to simplifying everyday coding, the addition prepares the way for the use of pattern matching in the switch statement. Pattern matching is available as another preview language feature.
 
Currently, the default flow of control of switch blocks is fall through, so requiring a break statement to avoid the rest of the Case statements in a block being tested and potentially executed. The new switch expressions introduce a new form of switch label, written "case L ->" to signify that only the code to the right of the label is to be executed if the label is matched. For example:
switch (day) {
    case MONDAY, FRIDAY, SUNDAY -> System.out.println(6);
    case TUESDAY                -> System.out.println(7);
    case THURSDAY, SATURDAY     -> System.out.println(8);
    case WEDNESDAY              -> System.out.println(9);
}
 

The next improvements to the new release are to the current garbage collector. From now on, the garbage collector will  automatically return Java heap memory to the operating system when idle rather than waiting until a full garbage collection to return memory to the operating system, and it will also respect pause times better.

Until now, the garbage collector sometimes started an amount of work that would take longer than the pause target, meaning the task overran. Under the improved version, if this is happening, the garbage collector lowers its targets. 

Still on garbage collection, Shenandoah has been added in an experimental version. Shenandoah is Java's new low-pause-time garbage collector algorithm. It reduces GC pause times by doing evacuation work concurrently with the running Java threads. Pause times with Shenandoah are independent of heap size, meaning you will have the same consistent pause times whether your heap is 200 MB or 200 GB.

Another improvement is the addition of a basic suite of microbenchmarks to the JDK source code, as well as making it easy for developers to run existing microbenchmarks and create new ones. There's also a new JVM Constants API that can be used to model nominal descriptions of key class-file and run-time artifacts.

The OpenJDK open source release is available now, along with the commercial license version. JDK 12 will receive a minimum of two updates before being followed by Oracle JDK 13, which is due out in September 2019.

corretto

 

More Information

Oracle OpenJDK open source release

Java 12 commercial license

Related Articles

 JDK 12 Feature Set Frozen

JDK 10 Released

JavaFX Will Be Removed From JDK

Java 9 Finally Appears

JDK 9 Update

Java 9 Slips Again

No Vote For Java Module System

JDK 9 Release Slips Again 

JDK Delivery Date Update

Jigsaw In JDK

To be informed about new articles on I Programmer, sign up for our weekly newsletter, subscribe to the RSS feed and follow us on Twitter, Facebook or Linkedin.

Banner


Is PHP in Trouble?
10/04/2024

The April 2024 headline for the TIOBE Index, which ranks programming languages in terms of their popularity, reads, "Is PHP losing its mojo" asking this question because this month PHP has dropped out [ ... ]



Apache Shiro 2.0 Released
21/03/2024

Apache Shiro 2.0 has been released. The Java security framework now requires at least Java 11, and has added support for Jakarta EE 10.


More News

raspberry pi books

 

Comments




or email your comment to: comments@i-programmer.info