java.time.Instant ofEpochSecond()方法
java.time.Instant.ofEpochSecond(long epochSecond)方法使用1970-01-01T00:00:00Z的纪元中的秒来获取Instant的实例。
1 语法
public static Instant ofEpochSecond(long epochSecond)
2 参数
epochSecond:1970-01-01T00:00:00Z的秒数。
3 返回值
瞬间,不是null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.Instant ofEpochSecond()方法
*/
import java.time.Instant;
public class InstantDemo {
public static void main(String[] args) {
Instant instant = Instant.ofEpochSecond(10000);
System.out.println(instant);
}
}
输出结果为:
1970-01-01T02:46:40Z
热门文章
优秀文章