java.time.OffsetDateTime.getLong(TemporalField field)
方法從此日期時間獲取指定欄位的long
值。
以下是java.time.OffsetDateTime.getLong(TemporalField field)
方法的宣告。
public long getLong(TemporalField field)
field
- 要獲取的欄位,而不是null
。該欄位的值。
DateTimeException
- 如果無法獲取該欄位的值或該值超出該欄位的有效值範圍。UnsupportedTemporalTypeException
- 如果不支援該欄位或值的範圍超過long
的最大值。ArithmeticException
- 如果發生數位溢位以下範例顯示了java.time.OffsetDateTime.getLong(TemporalField field)
方法的用法。
package com.yiibai;
import java.time.OffsetDateTime;
import java.time.temporal.ChronoField;
public class OffsetDateTimeDemo {
public static void main(String[] args) {
OffsetDateTime date = OffsetDateTime.parse("2017-02-03T12:30:30+01:00");
System.out.println(date.getLong(ChronoField.CLOCK_HOUR_OF_DAY));
}
}
編譯並執行上面的程式,這將產生以下結果 -
12