java.time.YearMonth.until() 方法示例



描述

java.time.YearMonth.until(Temporal endExclusive, TemporalUnit unit) 方法根据指定单位计算到另一个日期的时间量。

声明

以下是 java.time.YearMonth.until(Temporal endExclusive, TemporalUnit unit) 方法的声明。

public long until(Temporal endExclusive, TemporalUnit unit)

``` **public long until(Temporal endExclusive, TemporalUnit unit)**```

  • 参数

  • endDateExclusive - 结束日期(不包括),转换为 YearMonth,不能为空。

unit - 要用于计量的时间单位,不能为空。

返回值

此日期与结束日期之间的时长。

  • 异常

  • DateTimeException - 无法计算时间量,或者无法将最终时间转换为 YearMonth。

  • UnsupportedTemporalTypeException - 不支持该单位。

ArithmeticException - 出现数字溢出。

示例

package com.tutorialspoint;

import java.time.YearMonth;
import java.time.temporal.ChronoUnit;

public class YearMonthDemo {
   public static void main(String[] args) {

      YearMonth date = YearMonth.parse("2015-12");
      YearMonth date1 = YearMonth.now();
      System.out.println(date.until(date1, ChronoUnit.YEARS));  
   }
}

实时演示

2
打印页面