- 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.between() 方法示例
说明
java.time.Duration.between() 方法获取表示两个时间对象之间持续时间的持续时间。
声明
以下是 java.time.Duration.between() 方法的声明。
public static Duration between(Temporal startInclusive, Temporal endExclusive)
参数
startInclusive − 开始时间点(包括在内),非空。
endExclusive − 结束时间点(不包括在内),非空。
返回值
持续时间,非空。
异常
DateTimeException − 如果无法获取时间点之间的秒数。
ArithmeticException − 如果计算超出持续时间的容量。
示例
以下示例演示了 java.time.Duration.between() 方法的使用。
package com.tutorialspoint; import java.time.Duration; import java.time.LocalDateTime; import java.time.LocalTime; public class DurationDemo { public static void main(String[] args) { Duration duration = Duration.between(LocalTime.NOON,LocalTime.MAX); LocalDateTime date = LocalDateTime.now(); System.out.println(date); date = (LocalDateTime)duration.addTo(date); System.out.println(date); } }
让我们编译并运行上述程序,这将生成以下结果 −
2017-03-07T15:45:39.456 2017-03-08T03:45:39.455999999
广告