java.time.Month.minus() Method Example



Description

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

Declaration

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

public Month minus(long months)

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.minus(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.minus(1));  
   }
}

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

MAY
APRIL
Advertisements