getLong()方法是Month ENUM的內置方法,用於從本月實例中長期獲取指定時間字段的值。
用法:
public long getLong(TemporalField field)
參數:此方法接受單個參數字段,該字段的長表示將從本月實例返回。
返回值:此方法返回指定字段的long值。
以下示例程序旨在說明上述方法:
程序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.MARCH;
// Get the value of field
System.out.println(month.getLong(ChronoField.MONTH_OF_YEAR));
}
}
輸出:
3
程序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.DECEMBER;
// Get the value of field
System.out.println(month.getLong(ChronoField.MONTH_OF_YEAR));
}
}
輸出:
12
相關用法
- Java Year atMonth(Month month)用法及代碼示例
- Java Array getLong()用法及代碼示例
- Java Field getLong()用法及代碼示例
- Java ChronoLocalDateTime getLong()用法及代碼示例
- Java MonthDay getLong()用法及代碼示例
- Java ByteBuffer getLong()用法及代碼示例
- Java Instant getLong()用法及代碼示例
- Java OffsetDateTime getLong()用法及代碼示例
- Java ZonedDateTime getLong()用法及代碼示例
- Java OffsetTime getLong()用法及代碼示例
- Java LocalDate getLong()用法及代碼示例
- Java ChronoLocalDate getLong()用法及代碼示例
- Java LocalTime getLong()用法及代碼示例
- Java Year getLong()用法及代碼示例
- Java ChronoZonedDateTime getLong()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 Month getLong() method in Java。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。