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