Java year plus(TemporalAmount)方法及示例
Year 类的 plus(TemporalAmount) 方法用于在这个Year对象中加入指定数量的TemporalAmount后返回这个Year的副本。如果指定的单位不能被添加到Year中,就会抛出一个异常。传递的TemporalAmount是由Period对象创建的。这个实例是不可改变的,不受这个方法调用的影响。
语法
public Year plus(TemporalAmount amountToadd)
参数: 该方法只接受一个参数 TemporalAmount ,代表要添加到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
参考资料:
https://docs.oracle.com/javase/10/docs/api/java/time/Year.html#plus(java.time.temporal.TemporalAmount)