Java Date Time - Year plusYears(long yearsToAdd) example








Year plusYears(long yearsToAdd) returns a copy of this year with the specified number of years added.

Syntax

plusYears has the following syntax.

public Year plusYears(long yearsToAdd)

Example

The following example shows how to use plusYears.

import java.time.Year;
/*w  ww  . j a v  a  2  s  . c  o  m*/
public class Main {
  public static void main(String[] args) {
    Year y = Year.of(2014);
    Year l = y.plusYears(2);
    System.out.println(l);

  }
}

The code above generates the following result.