Java中的 MonthDay get() 方法及示例
Java中MonthDay 类的get()方法从该月日获取指定字段的值作为int 。
句法:
public int get(TemporalField field)
参数:此方法接受一个参数字段,该字段指定要获取的字段且不为空。
返回:函数返回字段的值。
异常:该函数抛出三个 exptions,如下所述:
- DateTimeException :当无法获取该字段的值或该值超出该字段的有效值范围时,将抛出此异常。
- UnsupportedTemporalTypeException :当字段不被支持或值的范围超过一个 int 时抛出
- ArithmeticException : 当发生数值溢出时抛出。
下面的程序说明了MonthDay.get()方法:
方案一:
// Program to illustrate the get() 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.get(ChronoField.DAY_OF_MONTH));
}
}
输出:
12
方案二:
// Program to illustrate the get() 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.get(ChronoField.DAY_OF_MONTH));
}
}
输出:
6
程序 3:演示 DateTimeParseException
// Program to illustrate the get() 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.get(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#get-java.time.temporal.TemporalField-