當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。