Java YearMonth until()方法及示例
YearMonth 类的 until() 方法用于使用TemporalUnit计算两个YearMonth对象之间的时间量。起始点和结束点是这个和作为参数传递的指定的YearMonth。如果终点在起点之前,结果将是负数。该计算返回一个整数,代表两个YearMonth之间的完整单位数。这个实例是不可改变的,不受这个方法调用的影响。
语法
public long until(Temporal endExclusive, TemporalUnit unit)
参数: 该方法接受两个参数endExclusive,它是结束日期;exclusive,它被转换为一个YearMonth;unit,它是测量金额的单位。
返回值: 该方法返回该YearMonth和结束YearMonth之间的时间量。
异常: 该方法会抛出以下异常。
- DateTimeException – 如果不能计算金额,或者结束的时间性不能转换为YearMonth。
- UnsupportedTemporalTypeException – 如果单位不被支持。
- ArithmeticException – 如果发生数字溢出。
下面的程序说明了until()方法:
程序1 :
// Java program to demonstrate
// YearMonth.until() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create YearMonth objects
YearMonth y1 = YearMonth.of(2018, 12);
YearMonth y2 = YearMonth.of(2015, 10);
// apply until the method of YearMonth class
long result
= y2.until(y1,
ChronoUnit.YEARS);
// print results
System.out.println("Result in YEARS: "
+ result);
}
}
输出。
Result in YEARS: 3
程序2
// Java program to demonstrate
// YearMonth.until() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create YearMonth objects
YearMonth y1 = YearMonth.of(2018, 12);
YearMonth y2 = YearMonth.of(2015, 10);
// apply until the method of YearMonth class
long result
= y1.until(y2,
ChronoUnit.MONTHS);
// print results
System.out.println("Result in MONTHS: "
+ result);
}
}
输出。
Result in MONTHS: -38
参考资料:
https://docs.oracle.com/javase/10/docs/api/java/time/YearMonth.html#until(java.time.temporal.Temporal, java.time.temporalUnit)