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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。