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


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


Java中Period類的plusDays()方法用於將日期添加到此期間。此方法僅在DAYS運行,而不會影響其他兩個YEAR,MONTH。

用法:

public Period plusDays(long daysToAdd)

參數:此方法接受單個參數daysToAdd,這是要從該期間開始添加的天數。


返回值:它根據輸入中提供的期間返回一個“期間”,再加上指定的天數。不能為空。

異常:如果發生數字溢出,則拋出ArithmeticException。

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

程序1

// Java code to show the function plusDays() 
// to subtract the number of days from given periods 
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodClass { 
  
    // Function to subtract two given periods 
    static void addDays(Period p1, int daystoAdd) 
    { 
  
        System.out.println(p1.plusDays(daystoAdd)); 
    } 
  
    // 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); 
  
        int daystoAdd = 8; 
  
        addDays(p1, daystoAdd); 
    } 
}
輸出:
P4Y11M18D

程序2:期間可以為負。

// Java code to show the function plusDays() 
// to subtract the number of days from given periods 
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodClass { 
  
    // Function to subtract two given periods 
    static void addDays(Period p1, int daystoAdd) 
    { 
  
        System.out.println(p1.plusDays(daystoAdd)); 
    } 
  
    // Driver Code 
    public static void main(String[] args) 
    { 
  
        // Defining first period 
        int year = -4; 
        int months = -11; 
        int days = 0; 
        Period p1 = Period.of(year, months, days); 
  
        int daystoAdd = 8; 
  
        addDays(p1, daystoAdd); 
    } 
}
輸出:
P-4Y-11M8D

參考: https://docs.oracle.com/javase/8/docs/api/java/time/Period.html#plusDays-long-



相關用法


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