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