在將指定數量的TemporalAmount添加到Year對象之後,使用Year類的plus(TemporalAmount)方法返回今年的副本。如果無法將指定單位添加到Year中,則會引發異常。傳遞的TemporalAmount是根據Period對象創建的。此實例是不可變的,不受此方法調用的影響。
用法:
public Year plus(TemporalAmount amountToadd)
參數:此方法僅接受一個參數TemporalAmount,該參數表示要添加到Year對象的數量。
返回值:此方法返回基於今年的Year,並添加指定的數量。
異常:此方法引發以下異常:
- DateTimeException-如果無法添加,則拋出此異常。
- ArithmeticException-如果發生數字溢出,則拋出此異常。
以下示例程序旨在說明plus(TemporalAmount amountToadd)方法:
示例1:
// Java program to demonstrate
// Year.plus(TemporalAmount amountToadd) method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create a Year object
Year year = Year.of(2019);
// print instance
System.out.println("Year :"
+ year);
// create temporalAmount object from period class
// passing temporalAmount to
// plus() method
Year value
= year.plus(
Period.ofYears(12));
// print result
System.out.println("Value after addition: "
+ value);
}
}
輸出:
Year :2019 Value after addition: 2031
示例2:
// Java program to demonstrate
// Year.plus(TemporalAmount amountToadd) method
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
// create a Year object
Year year = Year.of(2019);
// print instance
System.out.println("Year :"
+ year);
// create temporalAmount object from period class
// passing temporalAmount to
// plus() method
Year value
= year.plus(
Period.ofYears(120));
// print result
System.out.println("Value after addition: "
+ value);
}
}
輸出:
Year :2019 Value after addition: 2139
相關用法
- Java Year now()用法及代碼示例
- Java Year until()用法及代碼示例
- Java Year from()用法及代碼示例
- Java Year with()用法及代碼示例
- Java Year of()用法及代碼示例
- Java Year get()用法及代碼示例
- Java Year minusYears()用法及代碼示例
- Java Year query()用法及代碼示例
- Java Year range()用法及代碼示例
- Java Year length()用法及代碼示例
- Java Year plusYears()用法及代碼示例
- Java Year getLong()用法及代碼示例
- Java Year adjustInto()用法及代碼示例
- Java Year isLeap()用法及代碼示例
- Java Year isBefore()用法及代碼示例
注:本文由純淨天空篩選整理自AmanSingh2210大神的英文原創作品 Year plus(TemporalAmount) method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。