ZoneId:代表时区Id
ZonedDateTime:带时区和时间
一、ZoneId
1.public static ZoneId systemDefault():获取系统默认的时区
2.public static Set<String> getAvailablleZoneIds():获取Java支持的全部时区Id
3.public static ZoneId of(String zoneId):把某个时区id封装成ZoneId对象
二、ZonedDateTime
1.public static ZonedDateTime now(ZoneId zone):获取某个时区的ZonedDateTIme对象
获取世界标准时间
2.public static ZonedDateTime now():获取系统默认时区的ZonedDateTIme对象
ZonedDateTIme对象是不可变对象,LocalDateTime有的获取、修改日期和时间信息的方法ZonedDateTIme也有