Java month 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
程序2 :
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://docs.oracle.com/javase/8/docs/api/java/time/Month.html#plus-long-