当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Instant until()用法及代码示例


Instant类的until()方法,用于使用TemporalUnit计算两个Instant对象之间的时间。起点和终点是这个点,指定的瞬间作为参数传递。如果结束在开始之前,结果将为负。计算返回一个整数,代表两个时刻之间的完整单位数。此实例是不可变的,不受此方法调用的影响。

用法:

public long until(Temporal endExclusive, TemporalUnit unit)

参数:此方法接受两个参数endExclusive,这是结束日期(不包括在内),该日期被转换为Instant(即时)和unit(单位),该单位是数量的计量单位。


返回值:此方法返回此时刻与结束时刻之间的时间量。

异常:此方法引发以下异常:

  • DateTimeException–如果无法计算数量,或者结束时态无法转换为即时。
  • UnsupportedTemporalTypeException–如果不支持本机。
  • ArithmeticException–如果发生数字溢出。

以下示例程序旨在说明until()方法:
示例1:

// Java program to demonstrate 
// Instant.until() method 
  
import java.time.*; 
import java.time.temporal.ChronoUnit; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create Instant objects 
        Instant instant1 
            = Instant.parse("2019-01-03T19:35:50.00Z"); 
        Instant instant2 
            = Instant.parse("2019-01-04T13:18:59.00Z"); 
  
        // apply until method of Instant class 
        long result 
            = instant1.until(instant2, 
                             ChronoUnit.MINUTES); 
  
        // print results 
        System.out.println("Result in Minutes: "
                           + result); 
    } 
}
输出:
Result in Minutes: 1063

示例2:

// Java program to demonstrate 
// Instant.until() method 
  
import java.time.*; 
import java.time.temporal.ChronoUnit; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create Instant objects 
        Instant instant1 
            = Instant.parse("2010-01-03T19:35:50.00Z"); 
        Instant instant2 
            = Instant.parse("2019-01-04T13:18:59.00Z"); 
  
        // apply until method of Instant class 
        long result 
            = instant1.until(instant2, 
                             ChronoUnit.DAYS); 
  
        // print results 
        System.out.println("Result in DAYS: "
                           + result); 
    } 
}
输出:
Result in DAYS: 3287

参考文献:
https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#until(java.time.temporal.Temporal, java.time.temporal.TemporalUnit)



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Instant until() Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。