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-
相關用法
- Java Year atMonth(Month month)用法及代碼示例
- Java Month get()用法及代碼示例
- Java Month of()用法及代碼示例
- Java Month from()用法及代碼示例
- Java Month isSupported()用法及代碼示例
- Java Month getValue()用法及代碼示例
- Java Month getLong()用法及代碼示例
- Java Month getDisplayName()用法及代碼示例
- Java Month firstDayOfYear()用法及代碼示例
- Java Month firstMonthOfQuarter()用法及代碼示例
- Java Month adjustInto()用法及代碼示例
- Java Month length()用法及代碼示例
- Java Month minus()用法及代碼示例
- Java Month maxLength()用法及代碼示例
- Java Month minLength()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Month plus() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。