java.time.Instant now()方法
java.time.Instant.now(Clock clock)方法从指定时钟获取当前时刻。
1 语法
public static Instant now(Clock clock)
2 参数
clock:要使用的时钟,而不是null。
3 返回值
使用指定时钟的当前瞬间,不为null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.Instant now()方法
*/
import java.time.Clock;
import java.time.Instant;
public class InstantDemo {
public static void main(String[] args) {
Instant instant = Instant.now(Clock.systemUTC());
System.out.println(instant);
}
}
输出结果为:
2017-03-15T09:18:34.062Z
热门文章
优秀文章