java.time.Instant.ofEpochSecond() 方法
描述
java.time.Instant.ofEpochSecond(long epochSecond, long nanoAdjustment) 方法使用 1970-01-01T00:00:00Z 纪元中的秒数和秒的纳秒小数部分获取 Instant 实例。< /p>
声明
以下是 java.time.Instant.ofEpochSecond(long epochSecond, long nanoAdjustment) 方法的声明。
public static Instant ofEpochSecond(long epochSecond, long nanoAdjustment)
参数
epochSecond − 从 1970-01-01T00:00:00Z 开始的秒数。
nanoAdjustment − 纳秒调整到秒数,正数或负数。
返回值
瞬间,不为空。
异常
DateTimeException − 如果瞬间超过最大或最小瞬间。
ArithmeticException − 如果发生数字溢出。
示例
下面的例子展示了 java.time.Instant.ofEpochSecond(long epochSecond, long nanoAdjustment) 方法的使用。
package com.tutorialspoint; import java.time.Instant; public class InstantDemo { public static void main(String[] args) { Instant instant = Instant.ofEpochSecond(10000,1000); System.out.println(instant); } }
让我们编译并运行上面的程序,这将产生下面的结果 −
1970-01-01T02:46:40.000001Z