当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java 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)

参数

  • endDateExclusive− 结束日期,独占,转换为 YearMonth,不为 null。

  • unit− 计量数量的单位,不为空。

返回值

此日期和结束日期之间的时间量。

异常

  • DateTimeException− 如果数量无法计算,或结束时间无法转换为 YearMonth。

  • UnsupportedTemporalTypeException− 如果不支持该单元。

  • ArithmeticException- 如果发生数字溢出。

示例

下面的例子展示了 java.time.YearMonth.until(Temporal endExclusive, TemporalUnit unit) 方法的用法。

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

相关用法


注:本文由纯净天空筛选整理自 java.time.YearMonth.until() Method Example。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。