java.time.Month.plus() Method Example



Description

The java.time.Month.plus(long months) method the month-of-year that is the specified number of months before this one.

Declaration

Following is the declaration for java.time.Month.plus(long months) method.

public Month plus(long days)

Parameters

months − the months to subtract, positive or negative.

Return Value

the resulting month, not null.

Example

The following example shows the usage of java.time.Month.plus(long months) method.

package com.tutorialspoint;

import java.time.Month;

public class MonthDemo {
   public static void main(String[] args) {
 
      Month month = Month.of(5);
      System.out.println(month);  
      System.out.println(month.plus(1));  
   }
}

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

MAY
JUNE
Advertisements