java.time.Year.plusYears() Method Example



Description

The java.time.Year.plusYears(long years) method returns a copy of this Year with the specified years added.

Declaration

Following is the declaration for java.time.Year.plusYears(long years) method.

public Year plusYears(long years)

Parameters

years − the years to add, positive or negative.

Return Value

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

Exception

ArithmeticException − if numeric overflow occurs.

Example

The following example shows the usage of java.time.Year.plusYears(long years) method.

package com.tutorialspoint;

import java.time.Year;

public class YearDemo {
   public static void main(String[] args) {

      Year date = Year.parse("2017");
      Year date1 = date.plusYears(10);
      System.out.println(date1);   
   }
}

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

2027
Advertisements