java.time.ZoneOffset.get()方法

2019-10-16 22:41:03

java.time.ZoneOffset.get(TemporalField field)方法從此ZoneOffset獲取指定欄位的int值。

宣告

以下是java.time.ZoneOffset.get(TemporalField field)方法的宣告。

public int get(TemporalField field)

引數

  • field - 要獲取的欄位,而不是null

返回值

該欄位的值。

異常

  • DateTimeException - 如果無法獲取該欄位的值或該值超出該欄位的有效值範圍。
  • UnsupportedTemporalTypeException - 如果不支援該欄位或值的範圍超過int。
  • ArithmeticException - 如果發生數位溢位。

範例

以下範例顯示了java.time.ZoneOffset.get(TemporalField field)方法的用法。

package com.yiibai;

import java.time.ZoneOffset;
import java.time.temporal.ChronoField;

public class ZoneOffsetDemo {
   public static void main(String[] args) {

      ZoneOffset zoneOffset = ZoneOffset.of("+02:00");
      System.out.println(zoneOffset.get(ChronoField.OFFSET_SECONDS));
   }
}

編譯並執行上面的程式,這將產生以下結果 -

7200