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


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


Java中Period類的plusYears()方法用於將給定的年份添加到此期間。此函數僅在YEARS起作用,並且不影響MONTH和DAYS。

用法:

public Period plusYears(long yearsToAdd)

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


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

異常:它引發ArithmeticException。如果發生數字溢出,則會捕獲此異常。

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

示例1:

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

程序2:期間可以為負。

// Java code to show the function plusYears() 
// to add the number of years to given periods 
import java.time.Period; 
import java.time.temporal.ChronoUnit; 
  
public class PeriodClass { 
  
    // Function to add years to given periods 
    static void addYears(Period p1, int yearstoAdd) 
    { 
  
        System.out.println(p1.plusYears(yearstoAdd)); 
    } 
  
    // 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 yearstoAdd = 8; 
  
        addYears(p1, yearstoAdd); 
    } 
}
輸出:
P4Y-11M

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



相關用法


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