java.time.ZoneId.normalized() 方法示例 java.time.ZoneId.hashCode() 方法示例 java.time.ZoneId.of() 方法示例 java.time.ZoneId.normalized() 方法示例 package com.codingdict; import java.time.ZoneId; public class ZoneIdDemo { public static void main(String[] args) { ZoneId zone = ZoneId.of("Z"); System.out.println(zone.normalized()); } } java.time.ZoneId.hashCode() 方法示例 java.time.ZoneId.of() 方法示例