ZonedDateTime类的until()方法用于使用TemporalUnit计算两个ZonedDateTime对象之间的时间量。起点和终点是这个点,指定的ZonedDateTime作为参数传递。如果结束在开始之前,结果将为负。计算返回一个整数,代表两个ZonedDateTime之间的完整单位数。此实例是不可变的,不受此方法调用的影响。
用法:
public long until(Temporal endExclusive, TemporalUnit unit)
参数:此方法接受两个参数endExclusive,它是结束日期,exclusive,它转换为ZonedDateTime,单位是用来测量数量的单位。
返回值:此方法返回此ZonedDateTime与结束ZonedDateTime之间的时间量。
异常:此方法引发以下异常:
- DateTimeException-如果无法计算数量,或者结束时态不能转换为ZonedDateTime。
- UnsupportedTemporalTypeException-如果不支持该单元。
- ArithmeticException-如果发生数字溢出。
以下示例程序旨在说明until()方法:
示例1:
// Java program to demonstrate
// ZonedDateTime.until() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create ZonedDateTime objects
ZonedDateTime z1
= ZonedDateTime
.parse("2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
ZonedDateTime z2
= ZonedDateTime
.parse("2018-10-25T23:12:31.123+02:00[Europe/Paris]");
// apply until method of ZonedDateTime class
long result
= z1.until(z2,
ChronoUnit.HOURS);
// print results
System.out.println("Result in HOURS: "
+ result);
}
}
输出:
Result in HOURS: -1000
示例2:
// Java program to demonstrate
// ZonedDateTime.until() method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create ZonedDateTime objects
ZonedDateTime z1
= ZonedDateTime
.parse("2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
ZonedDateTime z2
= ZonedDateTime
.parse("2018-10-25T23:12:31.123+02:00[Europe/Paris]");
// applynedDateTime.parseZonedDateTime class
long result
= z2.until(z1,
ChronoUnit.DAYS);
// print results
System.out.println("Result in DAYS: "
+ result);
}
}
输出:
Result in DAYS: 41
相关用法
- Java ZonedDateTime plus()用法及代码示例
- Java ZonedDateTime with()用法及代码示例
- Java ZonedDateTime get()用法及代码示例
- Java ZonedDateTime of()用法及代码示例
- Java ZonedDateTime now()用法及代码示例
- Java ZonedDateTime truncatedTo()用法及代码示例
- Java ZonedDateTime range()用法及代码示例
- Java ZonedDateTime minusMinutes()用法及代码示例
- Java ZonedDateTime toLocalDateTime()用法及代码示例
- Java ZonedDateTime minusDays()用法及代码示例
- Java ZonedDateTime plusMonths()用法及代码示例
- Java ZonedDateTime withFixedOffsetZone()用法及代码示例
- Java ZonedDateTime withZoneSameLocal()用法及代码示例
- Java ZonedDateTime withZoneSameInstant()用法及代码示例
- Java ZonedDateTime minusSeconds()用法及代码示例
注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 ZonedDateTime until() Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。