Java 20¶
Java 20 (2023):
- Scoped Values (incubator): A way to share data within and across threads without using ThreadLocal.
static final ScopedValue<String> USER = ScopedValue.newInstance();
void doWork() {
ScopedValue.where(USER, "Alice").run(() -> {
System.out.println("User: " + USER.get());
});
}
-
Virtual Threads (preview): Continued refinement of the feature introduced in Java 19.
-
Pattern Matching for switch (preview): Further refinement and enhancements.