Java中的Clock system()方法
可以使用system()
JavaClockClass中的方法获取所需zoneID的当前时钟实例。此方法需要一个参数,即zoneID或时区,并返回该时区的时钟的当前实例。
演示此的程序如下所示-
示例
import java.time.*; public class Main { public static void main(String[] args) { ZoneId zone = ZoneId.of("Australia/Melbourne"); Clock c = Clock.system(zone); ZonedDateTime zdt = c.instant().atZone(c.getZone()); System.out.println("The Date Time for the given zone is: " + zdt.toString()); } }
输出结果
The Date Time for the given zone is: 2019-02-06T23:03:16.395+11:00[Australia/Melbourne]
现在让我们了解上面的程序。
使用方法获得所需zoneID的当前时钟实例system()
。使用方法显示即时信息toString()
。演示这的代码片段如下-
ZoneId zone = ZoneId.of("Australia/Melbourne"); Clock c = Clock.system(zone); ZonedDateTime zdt = c.instant().atZone(c.getZone()); System.out.println("The Date Time for the given zone is: " + zdt.toString());