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


Java Instant minus()用法及代碼示例


在Instant類中,根據傳遞給它的參數,有兩種類型的minus()方法。

minus(long amountTosubtract, TemporalUnit unit)

Instant類的minus()方法用於返回該瞬時值的副本,其中減去指定數量的單位。如果由於該單位不受支持或由於其他原因而無法減去該數量,則將引發異常。

用法:


public Instant minus(long amountToSubtract,
                     TemporalUnit unit)

參數:此方法接受兩個參數:

  • amountToSubtract它是要減去結果的單位量,可以為負,並且
  • unit這是要減去的數量的單位,不能為null。

返回值:此方法基於此瞬間返回Instant,減去指定的數量。

異常:此方法引發以下異常:

  • DateTimeException–如果不能進行減法
  • UnsupportedTemporalTypeException–如果不支持本機
  • ArithmeticException–如果發生數字溢出

以下示例程序旨在說明minus()方法:

示例1:

// Java program to demonstrate 
// Instant.minus() method 
  
import java.time.*; 
import java.time.temporal.ChronoUnit; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an Instant object 
        Instant instant 
            = Instant.parse("2018-12-30T19:34:50.63Z"); 
  
        // subtract 20 DAYS to Instant 
        Instant value 
            = instant.minus(20, ChronoUnit.DAYS); 
  
        // print result 
        System.out.println("Instant after subtracting DAYS: "
                           + value); 
    } 
}
輸出:
Instant after subtracting DAYS: 2018-12-10T19:34:50.630Z

minus(TemporalAmount amountTosubtract)

Instant類的minus()方法用於返回此瞬時的副本,並將指定的數量減去日期時間。該數量通常是Period或Duration,但是可以是實現TemporalAmount接口的任何其他類型。

用法:

public Instant minus(TemporalAmount amountTosubtract)

參數:此方法接受一個參數parameterToSubtract,它是要減去的數量,它不能為null。

返回值:此方法基於此日期時間並減去後返回Instant,而不是null。

異常:此方法引發以下異常:

  • DateTimeException–如果不能進行減法
  • ArithmeticException–如果發生數字溢出

以下示例程序旨在說明minus()方法:
示例1:

// Java program to demonstrate 
// Instant.minus() method 
  
import java.time.*; 
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an Instant object 
        Instant inst 
            = Instant.parse("2018-12-30T19:34:50.63Z"); 
  
        // subtract 10 Days to Instant 
        Instant value 
            = inst.minus(Period.ofDays(10)); 
  
        // print result 
        System.out.println("Instant after subtracting Days: "
                           + value); 
    } 
}
輸出:
Instant after subtracting Days: 2018-12-20T19:34:50.630Z

參考文獻:
https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#minus(java.time.temporal.TemporalAmount)
https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#minus(long,java.time.temporal.TemporalUnit)



相關用法


注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Instant minus() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。