java.time.ZoneOffset.ofTotalSeconds() 方法示例 java.time.ZoneOffset.ofHoursMinutesSeconds() 方法示例 java.time.ZoneOffset.query() 方法示例 java.time.ZoneOffset.ofTotalSeconds() 方法示例 package com.codingdict; import java.time.ZoneOffset; public class ZoneOffsetDemo { public static void main(String[] args) { ZoneOffset zone = ZoneOffset.ofTotalSeconds(3600); System.out.println(zone); } } java.time.ZoneOffset.ofHoursMinutesSeconds() 方法示例 java.time.ZoneOffset.query() 方法示例