Java 8 Clock getZone()方法

可以使用getZone()Java中Clock类中的方法获得创建日期和时间所需的时区。此方法不需要任何参数,并且返回所需的时区。

演示此的程序如下所示-

示例

import java.time.*;
public class Demo {
   public static void main(String[] args) {
      Clock c = Clock.systemDefaultZone();
      ZoneId z = c.getZone();
      System.out.println("The clock is: " + c);
      System.out.println("The ZoneId is: " + z);
   }
}

输出结果

The clock is: SystemClock[Etc/UTC]
The ZoneId is: Etc/UTC

现在让我们了解上面的程序。

使用方法获得时区getZone(),然后显示该值。演示这的代码片段如下-

Clock c = Clock.systemDefaultZone();
ZoneId z = c.getZone();
System.out.println("The clock is: " + c);
System.out.println("The ZoneId is: " + z);