java.time.Month minus()方法
java.time.Month.minus(long months)方法是内置在Month枚举的方法,此方法返回从该月起指定的月份数之前的月份。
1 语法
public Month minus(long months)
2 参数
months:要减去的月份,正数或负数。
3 返回值
该方法返回从该月起指定的月数之前的一个月。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.Month minus()方法
*/
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
热门文章
优秀文章