How to Add Years in Java


In this example we will show the method to add years in Java.

Source Code

package com.beginner.examples;

import java.util.Calendar;

public class AddYears {
  public static void main(String[] args){
    Calendar c = Calendar.getInstance();
    System.out.println(c.get(Calendar.YEAR));
    //years add 1
    c.add(Calendar.YEAR, 1);
    System.out.println(c.get(Calendar.YEAR));
  }
}

Output:

2020
2021

References

Imported packages in Java documentation:

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments