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



描述

java.time.Instant.until(Temporal endExclusive, TemporalUnit unit) 方法根据指定单位计算直至另一个时间的持续时间。

声明

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

public long until(Temporal endExclusive, TemporalUnit unit)

参数

  • endExclusive − 结束日期(独占),转换为一个非 null Instant。

  • unit − 用于测量量的单位,非 null。

返回值

本时间和结束时间之间的持续时间。

异常

  • DateTimeException − 如果无法计算数量,或不能将结束 Temporal 转换为 Instant。

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

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

示例

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

package com.tutorialspoint;

import java.time.Instant;
import java.time.temporal.ChronoUnit;

public class InstantDemo {
   public static void main(String[] args) {

      Instant instant = Instant.parse("2017-12-03T10:15:30.00Z");
      Instant instant1 = Instant.parse("2017-12-03T10:18:30.00Z");
      System.out.println(instant.until(instant1, ChronoUnit.SECONDS));
   }
}

让我们编译并运行以上程序,它将产生以下结果 −

180
广告