java.time.Year.plus() Method Example



Description

The java.time.Year.plus(TemporalAmount amountToAdd) method returns a copy of this Year with the specified Year added.

Declaration

Following is the declaration for java.time.Year.plus(TemporalAmount amountToAdd) method.

public Year plus(TemporalAmount amountToAdd)

Parameters

amountToAdd − the Year to add, positive or negative, not null.

Return Value

a Year based on this Year with the specified Year added, not null.

Exception

  • DateTimeException − if the specified amount has a non-ISO chronology or contains an invalid unit.

  • ArithmeticException − if numeric overflow occurs.

Example

The following example shows the usage of java.time.Year.plus(TemporalAmount amountToAdd) method.

package com.tutorialspoint;

import java.time.Period;
import java.time.Year;

public class YearDemo {
   public static void main(String[] args) {
  
      Year date = Year.parse("2017");
      Year date1 = date.plus(Period.of(10,0,0));
      System.out.println(date1);  
   }
}

Let us compile and run the above program, this will produce the following result −

2027
Advertisements