- 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 - 时区 ID
- java.time - 时区偏移量
- java.time 包枚举
- java.time - 月份
- java.time 有用资源
- java.time - 讨论
java.time.Year.until() 方法示例
描述
java.time.Year.until(Temporal endExclusive, TemporalUnit unit) 方法按照指定单位,计算到另一个日期的时间量。
声明
以下是对 java.time.Year.until(Temporal endExclusive, TemporalUnit unit) 方法的声明。
public long until(Temporal endExclusive, TemporalUnit unit)
参数
endDateExclusive − 将 end date(非包容)转换为 Year,不能为空。
unit − 用来测量数量的单位,不能为空。
返回值
此日期和 end date 之间的时间量。
异常
DateTimeException − 如果无法计算数量,或者无法将 end temporal 转换为 Year。
UnsupportedTemporalTypeException − 如果不支持该单位。
ArithmeticException − 如果发生数字上溢。
示例
以下示例展示了 java.time.Year.until(Temporal endExclusive, TemporalUnit unit) 方法的用法。
package com.tutorialspoint; import java.time.Year; import java.time.temporal.ChronoUnit; public class YearDemo { public static void main(String[] args) { Year date = Year.parse("2015"); Year date1 = Year.now(); System.out.println(date.until(date1, ChronoUnit.YEARS)); } }
让我们编译并运行上述程序,将生成以下结果 -
1
广告