Java 24 was officially released on March 18, 2025! While this is not a Long-Term Support (LTS) version, it's an important step towards the next LTS release, Java 25, coming in September 2025.
Missing in your list is the new `Reader.of(CharSequence)` which provides better performance and efficiency over the old-schoold `StringReader`, as it prevents in-memory copies and is non-synchronized.
Missing in your list is the new `Reader.of(CharSequence)` which provides better performance and efficiency over the old-schoold `StringReader`, as it prevents in-memory copies and is non-synchronized.
JavaDocs: https://docs.oracle.com/en/java/javase/24/docs/api/java.base/java/io/Reader.html#of(java.lang.CharSequence)
RFE: https://bugs.openjdk.org/browse/JDK-8341566
Thanks for sharing