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