java.time.OffsetDateTime.until() 方法示例



说明

java.time.OffsetDateTime.until(Temporal endExclusive, TemporalUnit unit) 方法计算与另一个日期时间对应的指定单位的时间量。

声明

以下是java.time.OffsetDateTime.until(Temporal endExclusive, TemporalUnit unit) 方法的声明。

public long until(Temporal endExclusive, TemporalUnit unit)

参数

  • endDateExclusive - 结束日期,不包括,将转换为 OffsetDateTime,非 null。

  • unit - 用来测量时间量,非 null。

返回的值

此日期时间和结束日期时间之间的持续时间。

异常

  • DateTimeException - 如果无法计算时间量,或者结束时间无法转换为 OffsetDateTime。

  • UnsupportedTemporalTypeException - 如果不支持该单位。

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

示例

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

package com.tutorialspoint;

import java.time.OffsetDateTime;
import java.time.temporal.ChronoUnit;

public class OffsetDateTimeDemo {
   public static void main(String[] args) {
      
      OffsetDateTime date = OffsetDateTime.parse("2017-01-03T10:15:30+01:00");
      OffsetDateTime date1 = OffsetDateTime.now();
      System.out.println(date.until(date1, ChronoUnit.HOURS));  
   }
}

让我们编译并运行上述程序,这将产生以下结果 -

8566
广告