java.time.Month.minus() 方法
描述
java.time.Month.minus(long months) 方法返回指定月份之前的月份。
声明
以下是 java.time.Month.minus(long months) 方法的声明。
public Month minus(long months)
参数
months − 要减去的月份,正数或负数。
返回值
生成的月份,不为空。
示例
下面的例子展示了 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