Java中MonthDay類的get()方法從此month-day中以int形式獲取指定字段的值。
用法:
public int get(TemporalField field)
參數:此方法接受一個參數字段,該字段指定要獲取的字段,而不是null。
返回值:該函數返回該字段的值。
異常:該函數引發三個exp,如下所述:
- DateTimeException:當無法獲得該字段的值或該值超出該字段的有效值範圍時,拋出此錯誤。
- UnsupportedTemporalTypeException:當不支持該字段或值的範圍超過int時拋出
- ArithmeticException:發生數值溢出時拋出。
以下示例程序旨在說明MonthDay.get()方法:
示例1:
// 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
示例2:
// 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
相關用法
- Java MonthDay with()用法及代碼示例
- Java MonthDay from()用法及代碼示例
- Java MonthDay getLong()用法及代碼示例
- Java MonthDay isBefore()用法及代碼示例
- Java MonthDay isAfter()用法及代碼示例
- Java MonthDay hashCode()用法及代碼示例
- Java MonthDay format()用法及代碼示例
- Java MonthDay equals()用法及代碼示例
- Java MonthDay getDayOfMonth()用法及代碼示例
- Java MonthDay compareTo()用法及代碼示例
- Java MonthDay atYear()用法及代碼示例
- Java MonthDay isSupported()用法及代碼示例
- Java MonthDay getMonth()用法及代碼示例
- Java MonthDay getMonthValue()用法及代碼示例
- Java MonthDay query()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 MonthDay get() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。