Java中的月份 plus() 方法
plus()方法是 Month ENUM 的内置方法,用于获取当前月份之后的特定月份数。也就是说,此方法返回从本月起指定月数之后的月份。
语法:
public Month plus(long months)
参数:此方法接受单个参数months ,表示月数。
返回值:此方法返回从本月起指定月数之后的月份。
下面的程序说明了上述方法:
程序 1 :
import java.time.*;
import java.time.Month;
import java.time.temporal.ChronoField;
class monthEnum {
public static void main(String[] args)
{
// Create a month instance
Month month = Month.FEBRUARY;
// Print the month present 1
// month after feb
System.out.println(month.plus(1));
}
}
输出:
MARCH
方案二:
import java.time.*;
import java.time.Month;
import java.time.temporal.ChronoField;
class monthEnum {
public static void main(String[] args)
{
// Create a month instance
Month month = Month.APRIL;
// Print the month present 9
// month after April
System.out.println(month.plus(9));
}
}
输出:
JANUARY
参考:https: Java/time/Month.html#plus-long-