在将指定数量的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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。