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 − 结束日期,独占,转换为年份,不为空。
unit − 计量单位,不为空。
返回值
此日期与结束日期之间的时间量。
异常
DateTimeException − 如果无法计算数量,或者无法将结束时间转换为年份。
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