The plus(long, unit) method of Year class is used to return a copy of this year after adding the specified amount of unit to this Year object.An exception is thrown, If the specified unit cannot be added to this Year object. This instance is immutable and unaffected by this method call.
Syntax:
Java
Java
public Year plus(long amountToadd, TemporalUnit unit)Parameters: This method accepts two parameters:
- amountToadd: This parameter represents the amount of the unit to add to the result.
- unit: This parameter represents the unit of the amount to add.
- DateTimeException - This exception is thrown if the addition cannot be made.
- UnsupportedTemporalTypeException - This exception is thrown if the unit is not supported.
- ArithmeticException - This exception is thrown if numeric overflow occurs.
// Java program to demonstrate
// Year.plus(long, unit) 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);
// apply plus(long, unit) method
// adding 30 years
Year value
= year.plus(30, ChronoUnit.YEARS);
// print result
System.out.println("After addition year: "
+ value);
}
}
Output:
Program 2:
Year :2019 After addition year: 2049
// Java program to demonstrate
// Year.plus(long, unit) 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(2022);
// print instance
System.out.println("Year :"
+ year);
// apply plus(long, unit) method
// adding 50 years
Year value
= year.plus(50, ChronoUnit.YEARS);
// print result
System.out.println("After addition year: "
+ value);
}
}
Output:
References:
https://docs.oracle.com/javase/10/docs/api/java/time/Year.html#plus(long, java.time.temporal.TemporalUnit)Year :2022 After addition year: 2072