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


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


Java中Period類的minus()方法用於從指定的周期中減去給定的周期數。此函數分別在YEAR,MONTH和DAY運行。

注意:不執行標準化。 12個月和1年不同。

用法:


public Period minus(TemporalAmount amountToSubtract)

參數:此方法接受單個參數amountToSubtract,這是從此時間段中減去的數量。不能為空。

返回值:此方法基於給定的時間段返回一個時間段,並減去所請求的時間段,並且該值不能為null。

異常:

  • DateTimeException注意:如果指定的數量具有非ISO年表或包含無效的單位,則返回此異常。
  • ArithmeticException注意:如果發生數字溢出,則會捕獲此異常。

以下示例程序旨在說明上述方法:

程序1

// Java code to show the function minus() 
// to subtract the two given periods 
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodDemo { 
  
    // Function to subtract two given periods 
    static void subtractPeriod(Period p1, Period p2) 
    { 
  
        System.out.println(p1.minus(p2)); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
  
        // Defining first period 
        int year = 4; 
        int months = 11; 
        int days = 10; 
        Period p1 = Period.of(year, months, days); 
  
        // Defining second period 
        int year1 = 2; 
        int months1 = 7; 
        int days1 = 8; 
        Period p2 = Period.of(year1, months1, days1); 
  
        subtractPeriod(p1, p2); 
    } 
}
輸出:
P2Y4M2D

程序2

// Java code to show the function minus() 
// to subtract the two given periods 
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodDemo { 
  
    // Function to subtract two given periods 
    static void subtractPeriod(Period p1, Period p2) 
    { 
  
        System.out.println(p1.minus(p2)); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
        // Defining second period 
        int year1 = 2; 
        int months1 = 7; 
        int days1 = 8; 
        Period p1 = Period.of(year1, months1, days1); 
  
        // Defining first period 
        int year = 4; 
        int months = 11; 
        int days = 10; 
        Period p2 = Period.of(year, months, days); 
  
        subtractPeriod(p1, p2); 
    } 
}
輸出:
P-2Y-4M-2D

參考: https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#minus-java.time.temporal.TemporalAmount-



相關用法


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