前言
Java 18 引入了一系列新特性和改进,旨在增强开发者体验、提升性能和促进现代化编程实践。
Java 18 官方文档:
https://www.oracle.com/cn/news/announcement/oracle-releases-java-18-2022-03-22/
请注意,Java 18并不是一个长期支持(LTS)版本,主要用于引入实验性和预览特性,供开发者尝鲜和反馈。长期支持版本目前最新的是 java 21:https://www.oracle.com/cn/java/technologies/downloads/#java21
特性
- 默认UTF-8字符编码:JDK 18 将 UTF-8 设为标准 Java API 的默认字符编码,从而避免了因系统、地区或环境差异导致的编码问题。
System.out.println(System.getProperty("file.encoding")); // 输出应为 UTF-8
- 简单的Web服务器:新增了一个命令
jwebserver
,能够快速启动一个简易的静态Web服务器,适用于测试、教育及演示场景。该服务器不支持CGI或Servlet。
import jdk.jshell.httpserver.HttpServer;
public class SimpleWebServer {
public static void main(String[] args) throws Exception {
HttpServer server = HttpServer.create();
server.start();
System.out.println("Server started at http://localhost:" + server.port());
}
}
-
Javadoc中的代码片段支持:增强Javadoc以更好地支持代码片段嵌入,包括高亮、正则表达式高亮、代码替换等功能,提升了文档的可读性和实用性。
-
使用方法句柄重新实现核心反射:改进反射API,通过方法句柄提高反射操作的效率和灵活性。
-
矢量API:矢量API的进一步孵化,旨在提供向量化操作以充分利用CPU的SIMD(单指令多数据)指令,提升计算密集型任务的性能。
-
互联网地址解析SPI:引入一个新的服务提供者接口(SPI)用于互联网地址解析,增加了灵活性和可扩展性。
-
Foreign Function & Memory API(第二次孵化器):继续发展中的API,允许Java代码安全高效地调用本地库和管理外来内存,为Java与其他语言和系统的互操作提供了更强大的工具。
MemorySegment libPath = MemorySegment.ofString("/path/to/library.so");
MemoryAddress lib = Linker.nativeLinker().load(libPath);
MemorySegment functionSegment = lib.find("your_function").get();
FunctionDescriptor descriptor = FunctionDescriptor.of(ValueLayout.JAVA_INT, ValueLayout.JAVA_INT);
MemorySegment function = MemorySegment.functionPointer(functionSegment, descriptor);
int result = (int) function.invoke(42);
System.out.println("Result: " + result);
- switch表达式的模式匹配(第二次预览):继Java 17之后,switch表达式的模式匹配功能进入第二次预览阶段,使得switch语句能够更加灵活地处理不同类型和模式的匹配。
Object obj = "Hello";
switch (obj) {
case String s when s.length() > 5 -> System.out.println("Long string: " + s);
case Integer i when i > 100 -> System.out.println("Large number: " + i);
default -> System.out.println("Other type or doesn't match conditions.");
}
- 对Finalization的弃用:标志着Java平台逐步淘汰对象终结机制的又一步,鼓励使用try-with-resources语句或其他自动资源管理技术来代替。