LazyConstants in JDK 26 - Inside Java Newscast #106
Подписывайся на наши соц сети: https://vk.com/javatutorial https://t.me/javalib https://max.ru/javalib Lazily initializing fields in Java is error-prone and undermines constant-folding. JDK 26 comes with JEP 526, which previews `LazyConstant`, a type that lazily initializes a value through a given `Supplier`. It executes that supplier at most once successfully and then assigns the value to a field annotated with `@Stable`, which allows constant folding. This API is also a poster child for how OpenJDK develops and evolves features. JDK 26: https://jdk.java.net/26/ JEP 526: https://openjdk.org/jeps/526 JEP Draft for Lazy Constants in JDK 27: https://openjdk.org/jeps/8376595
Подписывайся на наши соц сети: https://vk.com/javatutorial https://t.me/javalib https://max.ru/javalib Lazily initializing fields in Java is error-prone and undermines constant-folding. JDK 26 comes with JEP 526, which previews `LazyConstant`, a type that lazily initializes a value through a given `Supplier`. It executes that supplier at most once successfully and then assigns the value to a field annotated with `@Stable`, which allows constant folding. This API is also a poster child for how OpenJDK develops and evolves features. JDK 26: https://jdk.java.net/26/ JEP 526: https://openjdk.org/jeps/526 JEP Draft for Lazy Constants in JDK 27: https://openjdk.org/jeps/8376595
