Java中的月份 getLong() 方法
getLong()方法是 Month ENUM 的内置方法,用于从该月实例中获取指定时间字段的值作为 long。
语法:
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
方案二:
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
参考:https: Java/time/Month.html#getLong-java.time.temporal.TemporalField-