Java中的 MonthDay getLong() 方法及示例
Java中MonthDay 类的getLong()方法从该月日获取指定字段的值作为long 。
句法:
public long getLong(TemporalField field)
参数:此方法接受一个参数字段,该字段将字段指定为 getLong 且不为空。
返回:该函数返回字段的长值。
异常:该函数抛出三个 exptions,如下所述:
- DateTimeException :当无法获取该字段的值或该值超出该字段的有效值范围时,将抛出此异常。
- UnsupportedTemporalTypeException :当字段不被支持或者值的范围超过一个long时抛出
- ArithmeticException : 当发生数值溢出时抛出。
下面的程序说明了MonthDay.getLong()方法:
方案一:
// Program to illustrate the getLong() method
import java.util.*;
import java.time.*;
import java.time.temporal.ChronoField;
public class GfG {
public static void main(String[] args)
{
// Parses the date
MonthDay tm1 = MonthDay.parse("--10-12");
System.out.println(
tm1.getLong(ChronoField.DAY_OF_MONTH));
}
}
输出:
12
方案二:
// Program to illustrate the getLong() method
import java.util.*;
import java.time.*;
import java.time.temporal.ChronoField;
public class GfG {
public static void main(String[] args)
{
// Parses the date
MonthDay tm1
= MonthDay.parse("--12-06");
System.out.println(
tm1.getLong(
ChronoField.DAY_OF_MONTH));
}
}
输出:
6
程序 3:演示 DateTimeParseException
// Program to illustrate the getLong() method
import java.util.*;
import java.time.*;
import java.time.temporal.ChronoField;
public class GfG {
public static void main(String[] args)
{
try {
// Parses the date
MonthDay tm1
= MonthDay.parse("--13-12");
System.out.println(
tm1.getLong(
ChronoField.DAY_OF_MONTH));
}
catch (Exception e) {
System.out.println(e);
}
}
}
输出:
java.time.format.DateTimeParseException:
Text '--13-12' could not be parsed:
Unable to obtain MonthDay from TemporalAccessor:
{DayOfMonth=12, MonthOfYear=13},
ISO of type java.time.format.Parsed
参考: https: Java/time/MonthDay.html#getLong-java.time.temporal.TemporalField-