Java 19
New Features
JVM
Language
-
Record Patterns Preview (JEP 405)
-
Pattern Matching for switch (Third Preview) Preview (JEP 427)
API
-
Foreign Function & Memory API Preview (JEP 424)
-
Virtual Threads Preview (JEP 425)
Downloads
Sandbox
Instantly compile and run Java 19 snippets without a local Java installation.
import java.util.Objects;
import javax.lang.model.SourceVersion;
public class Java19 {
public static void main(String[] args) {
var message = "Hello Java " + SourceVersion.RELEASE_19 + "!";
System.out.println(message);
System.out.println(Objects.toIdentityString(message));
}
}
">