java.time.Month plus()方法
java.time.Month.plus(long months)此方法返回从该月起指定的月份数后的月份。
1 语法
public Month plus(long months)
2 参数
months:要减去的月份,正数或负数。
3 返回值
结果月份,不为null。
4 示例
package com.yiidian;
/**
* 一点教程网: http://www.yiidian.com
*/
/**
* java.time.Month plus()方法
*/
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));
}
}
输出结果为:
MAY
JUNE
热门文章
优秀文章