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
广告