java.time.Month.minus() 方法示例



说明

java.time.Month.minus(long months) 方法返回比此月份早的指定月数的月份。

声明

以下是对 **java.time.Month.minus(long months)** 方法的声明。

public Month minus(long months)

参数

months - 要减去的月份,可以为正数或负数。

返回值

生成月份,不为 null。

示例

以下示例演示了 java.time.Month.minus(long months) 方法的使用。

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));  
   }
}

让我们编译并运行上述程序,生成如下结果:

MAY
APRIL
广告