Clock systemUTC() 方法在 Java 中
可以通过 Java 中 Clock 类中的方法 systemUTC() 获取带有 UTC 时区的时钟的当前实例。此方法无需参数,它会返回带有 UTC 时区的时钟的当前实例。
一个演示程序如下所示 −
示例
import java.time.*; public class Demo { public static void main(String[] args) { Clock c = Clock.systemUTC(); Instant i = c.instant(); ZonedDateTime zdt = i.atZone(c.getZone()); System.out.println(zdt.toString()); } }
输出
2019-02-07T08:00:46.924Z
现在,让我们了解一下上述程序。
可以通过方法 systemUTC() 获取带有 UTC 时区的时钟的当前实例。然后,ZonedDateTime 使用 toString() 方法打印。一个演示此过程的代码片段如下所示 −
Clock c = Clock.systemUTC(); Instant i = c.instant(); ZonedDateTime zdt = i.atZone(c.getZone()); System.out.println(zdt.toString());
广告