Java 24 发布

· 博客
broken image

3 月 18 日,Oracle 官宣正式发布 Java 24。Java 24(Oracle JDK 24)提供了数千项改进,拥有 20 多项涵盖了 Java 方方面面的新功能,包括新的 AI 和后量子密码功能,为开发人员提供了构建 AI 应用所需的工具。Oracle 会在 3 月 18 日至 20 日在美国加利福尼亚州红木海岸举办的 JavaOne 2025 会议公布关于 Java 24 的更多信息。

语言特性

  • JEP 488:Primitive Types in Patterns, instanceof, and switch(第二预览版)— 通过使语言更加统一且更具表达能力,帮助开发人员提高 Java 编程的工作效率。此功能可帮助开发人员消除他们在使用模式匹配、instanceof 和 switch 时遇到的基元类型的限制,从而增强模式匹配。该功能还在所有模式上下文中支持基元类型模式,并扩展 instanceof 和 switch,使其能够与所有基元类型一起使用。集成 AI 推理的应用开发人员将能够从原始类型的支持中大大受益。
  • JEP 492:Flexible Constructor Bodies(第三预览版)— 在构造函数主体中引入两个不同的序言和表述阶段,帮助开发人员提高代码的可靠性。开发人员能够更自然地将他们当前必须考虑的逻辑融入辅助静态方法、辅助中间构造函数或构造函数参数中。此外,该功能还保留了现有的保证,即子类构造函数中的代码不能干扰超类实例化,能够在重写方法时使类更加可靠。
  • JEP 494:Module Import Declarations(第二预览版)— 开发人员可以轻松快速地导入由模块导出的所有程序包,无需将导入代码放到模块中,从而提高工作效率。这简化了所有开发人员对模块化库的重用,让初学者能够更轻松地使用第三方库和基本 Java 类,无需了解它们在程序包层次结构中的位置。该功能还可以帮助开发人员快速将业务逻辑与原生 AI 推理、库或服务调用集成在一起。
  • JEP 495:Simple Source Files and Instance Main Methods(第四预览版)— 帮助学生无需了解为大型程序而设计的语言功能,即可顺利编写第一个程序,加快了上手 Java 编程的速度。有鉴于此,教育工作者和导师可以循序渐进地介绍概念,学生也可以编写简化的单类程序声明,并随着个人技能的提升,无缝扩展程序并使用更高级的功能。此外,经验丰富的 Java 开发人员也可以以简洁而高效的方式编写小程序,无需使用为大型项目设计的工具。

  • JEP 485:Stream Gatherers — 通过增强 Stream API 来支持自定义中间操作,让流管道以现有内置中间操作无法轻松实现的方式转换数据,从而帮助开发人员提高阅读、编写和维护 Java 代码的效率。
  • JEP 484:Class-File API — 通过提供用于解析、生成和转换 Java 类文件的标准 API,以及跟踪 Java Virtual Machine 规范定义的类文件格式,帮助开发人员提高工作效率。
  • JEP 487:Scoped Values(第四预览版)— 支持开发人员在线程内和线程之间共享不可变数据,从而提高项目的易用性、可理解性、性能和稳健性。
  • JEP 489:Vector API (九次孵化阶段)— 新推出的 API 允许以一种在运行时,可靠地编译为支持的 CPU 架构上的向量指令方式表达向量计算,帮助开发人员提高生产力。因此,开发人员可以实现优于等效标量计算的表现,这些计算通常用于 AI 推理和计算场景。
  • JEP 499:Structured Concurrency(第四预览版)— 通过面向结构化并发的新 API 简化并发编程,帮助开发人员提高多线程代码的可维护性、可靠性和可观察性。通过将在不同线程中运行的相关任务组视为单个工作单元,结构化并发可以减少因取消和关闭而产生的常见风险,例如线程泄漏和取消延迟。

安全库

  • JEP 478:Key Derivation Function API(预览版)— 通过为传输中的数据提供加密安全,帮助开发人员为新兴的量子计算环境做好准备。这有助于提高保密性和通信完整性。
  • JEP 496:Quantum-Resistant Module-Lattice-Based Key Encapsulation Mechanism — 支持实施抗量子的基于模块晶格的密钥封装机制 (ML-KEM),帮助提高 Java 应用的安全性。此功能是 Java 平台朝着后量子就绪以及最终交付后量子加密 (PQC) 技术支持迈出的重要一步,因为密钥封装机制用于通过公钥加密技术通过不安全的通信通道保护对称密钥。
  • JEP 497:Quantum-Resistant Module-Lattice-Based Digital Signature Algorithm — 支持实施抗量子的基于模块晶格的数字签名算法 (ML-DSA),帮助提高 Java 应用的安全性。与 JEP 496 一样,此功能是 Java 平台迈向后量子就绪以及最终交付 PQC 技术支持的重要举措,因为数字签名主要用于检测未经授权的数据修改和验证签字人的身份。ML-DSA 旨在防止未来的量子计算攻击,目前已被美国国家标准与技术研究所 (NIST) 列为 FIPS 204 中的标准化项目。

工具

  • JEP 493:Linking Run-Time Images without JMODs — jlink 工具无需使用 JDK 的 JMOD 文件,即可创建定制运行时映像,能够将 JDK 的大小缩减约 25%,进而帮助开发人员提高效率。有鉴于此,开发人员可以从模块链接运行时映像,无论这些模块是独立的 JMOD 文件、模块化 JAR 文件还是以前链接的运行时映像的一部分。构建 JDK 时必须启用此功能;此功能不会默认启用,某些 JDK 供应商可以选择不启用此功能。

性能和运行时更新

  • JEP 450:Compact Object Headers(实验版) — 在 64 位架构上,将 HotSpot JVM 中的对象标头大小从 96 位和 128 位缩减至 64 位,帮助开发人员提高工作效率。这有助于减少堆大小、提高部署密度和增加数据局部性。
  • JEP 475:Late Barrier Extension for G1 — 通过将 G1 垃圾收集器屏障从早期的 C2 JIT 编译管道扩展切换到后期屏障扩展,这意味着如果该项操作在独立于平台的优化和寄存器分配之后发生,就可以降低开销,还可以帮助开发人员提高效率。通过简化 G1 垃圾收集器屏障的实施,此功能有助于提高 C2 生成的代码的效率、可理解性、可恢复性和质量。
  • JEP 483:Ahead-of-Time Class Loading & Linking — 在 HotSpot Java Virtual Machine 启动时,使应用的类在加载和链接状态下立即可用,从而帮助开发人员提高工作效率并缩短启动时间。此功能不需要使用 jlink 或 jpackage 工具,不需要对从命令行启动应用的方式进行任何更改,也不需要对应用、库或框架的代码进行任何更改。因此,该功能有助于为启动和预热时间的持续进步奠定基础。
  • JEP 490:ZGC: Remove the Non-Generational Mode — 通过删除 Z Garbage Collector (ZGC) 的非分代模式,帮助开发人员降低支持两种不同模式的维护成本。
  • JEP 491:Synchronize Virtual Threads without Pinning — 提高使用同步方法和语句的 Java 代码和库的可扩展性,帮助开发人员提高工作效率。该功能允许虚拟线程释放其底层平台线程,让开发人员能够访问更多的虚拟线程来管理其应用的工作负载。

源代码

  • JEP 404:Generational Shenandoah(实验版) — 通过实验性的分代收集功能增强 Shenandoah 垃圾收集器,以提高可持续吞吐量、负载峰值抵抗力和内存利用率,帮助开发人员提高工作效率。
  • JEP 479:Remove the Windows 32-bit x86 Port — 删除对 Windows 32 位 x86 端口的源代码和构建支持,简化了 JDK 的构建和测试架构,帮助开发人员提高效率。
  • JEP 501:Deprecate the 32-bit x86 Port for Removal — 弃用 32 位 x86 端口,以便能够在接下来的版本中删除该端口,帮助开发人员提高工作效率。开发人员无需实施 32 位 x86 回退,即可访问需要特定平台支持的新功能。
  • 此外,通过引入安全的现代化特性,同时逐渐弃用和删除不安全的特性,Oracle 强调致力于保持 Java 的完整性并遵循软件开发优秀实践。Oracle 即将在接下来的 Java 版本中删除这三个特性
  1. JEP 472:Prepare to Restrict the Use of JNI;
  2. JEP 486:Permanently Disable the Security Manager;
  3. JEP 498:Warn upon Use of Memory-Access Methods in sun.misc.Unsafe。

English Blog:

On March 18, Oracle officially announced the official release of Java 24. Java 24 (Oracle JDK 24) delivers thousands of improvements and more than 20 new features covering all aspects of Java, including new AI and post-quantum cryptography capabilities, giving developers the tools they need to build AI applications. Oracle will be announcing more information about Java 24 at the JavaOne 2025 conference in Redwood Shores, California, March 18-20.

Linguistic features

  • JEP 488: Primitive Types in Patterns, instanceof, and switch (Second Preview) — Helps developers be more productive in Java programming by making the language more uniform and expressive. This feature helps developers enhance pattern matching by removing the limitations of primitive types they encounter when working with pattern matching, instanceof, and switch. The feature also supports primitive type patterns in all schema contexts, and extends instanceof and switch to work with all primitive types. App developers who integrate AI inference will be able to greatly benefit from support for the original type.
  • JEP 492: Flexible Constructor Bodies (Preview 3) - Introduces two distinct prologue and formulation stages in the constructor body to help developers improve the reliability of their code. Developers are able to more naturally incorporate the logic they currently have to consider into auxiliary static methods, auxiliary intermediate constructors, or constructor parameters. In addition, the feature retains the existing assurance that the code in the subclass constructor cannot interfere with superclass instantiation, making the class more reliable when rewriting methods.
  • JEP 494: Module Import Declarations (Second Preview) — Developers can quickly and easily import all packages exported by modules without having to put the import code into the module, increasing productivity. This simplifies the reuse of modular libraries for all developers, making it easier for beginners to work with third-party libraries and basic Java classes without having to understand where they fit in the package hierarchy. The feature also helps developers quickly integrate business logic with native AI inference, libraries, or service calls.
  • JEP 495: Simple Source Files and Instance Main Methods (Fourth Preview) — Helps students write their first program without having to understand the language features designed for large programs, speeding up the process of getting started with Java programming. With this in mind, educators and tutors can introduce concepts step by step, and students can write simplified, single-class program declarations that seamlessly extend programs and use more advanced features as individual skills improve. In addition, experienced Java developers can write small programs in a concise and efficient way without having to use tools designed for large projects.

storehouse

  • JEP 485: Stream Gatherers — Help developers read, write, and maintain Java code more efficiently by enhancing the Stream API to support custom intermediate operations, allowing stream pipelines to transform data in ways that are not easily possible with existing built-in intermediate operations.
  • JEP 484: Class-File API — Helps developers be more productive by providing a standard API for parsing, generating, and converting Java class files, as well as tracking the class file formats defined by the Java Virtual Machine specification.
  • JEP 487: Scoped Values (Fourth Preview) — Enables developers to share immutable data within and between threads, improving the ease of use, understandability, performance, and robustness of a project.
  • JEP 489: Vector API (Nine Incubation Stages) — A new API that allows developers to be more productive by expressing vector computation at runtime in a way that reliably compiles to vector instructions on supported CPU architectures. As a result, developers can achieve better performance than equivalent scalar computations, which are commonly used in AI inference and computational scenarios.
  • JEP 499: Structured Concurrency (Preview 4) — Simplifies concurrent programming with a new API for structured concurrency, helping developers improve maintainability, reliability, and observability of multithreaded code. By treating related groups of tasks running in different threads as a single unit of work, structured concurrency can reduce common risks associated with cancellations and shutdowns, such as thread leaks and cancellation delays.

Secure Library

  • JEP 478: Key Derivation Function API (Preview) — Helps developers prepare for the emerging quantum computing environment by providing cryptographic security for data in transit. This helps to improve confidentiality and communication integrity.
  • JEP 496: Quantum-Resistant Module-Lattice-Based Key Encapsulation Mechanism — Enables the implementation of quantum-resistant Module Lattice-Based Key Encapsulation Mechanism (ML-KEM) to help improve the security of Java applications. This feature is a significant step forward for the Java platform towards post-quantum-ready and ultimately the delivery of post-quantum cryptography (PQC) technology, as the key encapsulation mechanism is used to protect symmetric keys over insecure communication channels via public-key cryptography.
  • JEP 497: Quantum-Resistant Module-Lattice-Based Digital Signature Algorithm — Enables the implementation of quantum-resistant module-lattice-based digital signature algorithms (ML-DSA) to help improve the security of Java applications. Like JEP 496, this feature is an important step for the Java platform to move towards post-quantum readiness and ultimately the delivery of PQC technical support, as digital signatures are primarily used to detect unauthorized data modification and verify the identity of the signer. ML-DSA is designed to protect against future quantum computing attacks and is currently listed by the National Institute of Standards and Technology (NIST) as a standardized project in FIPS 204.

Tools

  • The JEP 493 tool: Linking Run-Time Images without JMODs — The jlink tool can create customized run-time images without using JDK's JMOD files, reducing the size of the JDK by approximately 25%, thereby helping developers improve efficiency. In light of this, developers can link run-time images from modules, regardless of whether these modules are standalone JMOD files, modular JAR files, or part of previously linked run-time images. This feature must be enabled when building the JDK; it is not enabled by default, and some JDK vendors may choose not to enable this feature.

Performance and Runtime Updates

  • JEP 450: Compact Object Headers (Experimental) - Reduces the size of object headers in the HotSpot JVM from 96 bits and 128 bits to 64 bits on 64-bit architectures, assisting developers in improving productivity. This helps to reduce heap size, increase deployment density, and enhance data locality.
  • JEP 475: Late Barrier Extension for G1 - By switching the G1 garbage collector barrier from the early C2 JIT compilation pipeline to a late barrier extension, it means that if this operation occurs after platform-independent optimizations and register allocation, overhead can be reduced, thereby helping developers enhance efficiency. By simplifying the implementation of the G1 garbage collector barrier, this feature contributes to improving the efficiency, understandability, recoverability, and quality of the code generated by C2.
  • JEP 483: Ahead-of-Time Class Loading & Linking - Makes application classes immediately available in a loaded and linked state at the startup of the HotSpot Java Virtual Machine, thereby assisting developers in improving productivity and reducing startup time. This feature does not require the use of jlink or jpackage tools, does not necessitate any changes to the way applications are launched from the command line, and does not require any modifications to the code of applications, libraries, or frameworks. Therefore, this feature helps to lay the foundation for continuous improvements in startup and warm-up times.
  • JEP 490: ZGC: Remove the Non-Generational Mode - By removing the non-generational mode of the Z Garbage Collector (ZGC), it helps developers reduce the maintenance costs associated with supporting two different modes.
  • JEP 491: Synchronize Virtual Threads without Pinning - Enhances the scalability of Java code and libraries using synchronized methods and statements, assisting developers in improving productivity. This feature allows virtual threads to release their underlying platform threads, enabling developers to access more virtual threads to manage the workload of their applications.

Source Code

  • JEP 404: Generational Shenandoah (Experimental) - Enhances the Shenandoah garbage collector with experimental generational collection capabilities to improve sustainable throughput, peak load resistance, and memory utilization, thereby assisting developers in enhancing their productivity.
  • JEP 479: Remove the Windows 32-bit x86 Port - Eliminates source code and build support for the Windows 32-bit x86 port, simplifying the JDK's build and testing architecture, which aids developers in improving efficiency.
  • JEP 501: Deprecate the 32-bit x86 Port for Removal - Deprecates the 32-bit x86 port to facilitate its removal in upcoming versions, helping developers enhance their productivity. Developers can access new features requiring specific platform support without implementing a 32-bit x86 fallback.
  • Furthermore, by introducing secure modern features while gradually deprecating and removing insecure ones, Oracle emphasizes its commitment to maintaining the integrity of Java and adhering to best practices in software development. Oracle will soon remove these three features in the upcoming Java versions.
  1. JEP 472:Prepare to Restrict the Use of JNI;
  2. JEP 486:Permanently Disable the Security Manager;
  3. JEP 498:Warn upon Use of Memory-Access Methods in sun.misc.Unsafe。