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


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


Java中Period類的plusMonths()方法用於將指定的月份添加到此當前期間。此函數僅在MONTHS起作用,並且不影響YEARS和DAYS。

用法:

public Period plusMonths(long monthsToAdd)

參數:此方法接受單個參數monthsToAdd,這是要添加到期間的月數。


返回值:此方法基於輸入中提供的期間加上指定的月數來返回期間。不能為空。

異常:如果發生數字溢出,則此方法將引發ArithmeticException。

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

示例1:

// Java code to show the function plusMonths() 
// to add the number of months to given periods 
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodClass { 
  
    // Function to add months to given periods 
    static void addMonths(Period p1, int monthstoAdd) 
    { 
  
        System.out.println(p1.plusMonths(monthstoAdd)); 
    } 
  
    // 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 monthstoAdd = -8; 
  
        addMonths(p1, monthstoAdd); 
    } 
}
輸出:
P-4Y-19M

程序2:要添加的月份可以是負數。

// Java code to show the function plusMonths() 
// to add the number of months from given periods 
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodClass { 
  
    // Function to add months to given period 
    static void addMonths(Period p1, int monthstoAdd) 
    { 
  
        System.out.println(p1.plusMonths(monthstoAdd)); 
    } 
  
    // 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 monthstoAdd = 8; 
  
        addMonths(p1, monthstoAdd); 
    } 
}
輸出:
P4Y19M10D

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



相關用法


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