- java.time 程序包类
- java.time - 主页
- java.time - 时钟
- java.time - 持续时间
- java.time - 即刻
- java.time - 本地日期
- java.time - 本地日期时间
- java.time - 本地时间
- java.time - 月日
- java.time - 偏移日期时间
- java.time - 偏移时间
- java.time - 周期
- java.time - 年
- java.time - 年月
- java.time - 区域化日期时间
- java.time - 区域标识
- java.time - 区域偏移
- java.time 程序包枚举
- java.time - 月
- java.time 有用资源
- java.time - 讨论
java.time.Duration.ofSeconds() 方法示例
说明
java.time.Duration.ofSeconds(long seconds) 方法获取表示秒数和纳秒调整时长的持续时间。
声明
以下是 java.time.Duration.ofSeconds(long seconds) 方法的声明。
public static Duration ofSeconds(long seconds, long nanoAdjustment)
参数
seconds - 秒数,为正数或负数。
nanoAdjustment - 秒数的纳秒调整,为正数或负数。
返回值
Duration,非空。
异常
ArithmeticException - 如果调整导致秒数超过 Duration 的容量。
示例
以下示例显示 java.time.Duration.ofSeconds(long seconds, long nanoAdjustment) 方法的用法。
package com.tutorialspoint; import java.time.Duration; public class DurationDemo { public static void main(String[] args) { Duration duration = Duration.ofSeconds(2); Duration duration1 = duration.plus(Duration.ofSeconds(5)); System.out.println(duration1.toMillis()); } }
让我们编译并运行上述程序,这将产生以下结果 -
7000
广告