- java.time 包类别
- java.time - 主页
- java.time - Clock
- java.time - Duration
- java.time - Instant
- java.time - LocalDate
- java.time - LocalDateTime
- java.time - LocalTime
- java.time - MonthDay
- java.time - OffsetDateTime
- java.time - OffsetTime
- java.time - Period
- java.time - Year
- java.time - YearMonth
- java.time - ZonedDateTime
- java.time - ZoneId
- java.time - ZoneOffset
- java.time 包枚举
- java.time - Month
- java.time 实用资源
- java.time - 讨论
java.time.Instant.ofEpochSecond() 方法示例
说明
java.time.Instant.ofEpochSecond(long epochSecond, long nanoAdjustment) 方法使用 1970-01-01T00:00:00Z 纪元的秒和纳秒级秒分数获取 Instant 实例。
声明
以下是 java.time.Instant.ofEpochSecond(long epochSecond, long nanoAdjustment) 方法的声明。
public static Instant ofEpochSecond(long epochSecond, long nanoAdjustment)
参数
epochSecond - 自 1970-01-01T00:00:00Z 起的秒数。
nanoAdjustment - 对秒数的纳秒级调整,正值或负值。
返回值
一个 Instant,非空。
异常
DateTimeException - 如果 Instant 超出最大或最小 Instant。
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
广告