java.time.Instant.atOffset()方法

2019-10-16 22:39:08

java.time.Instant.atOffset(ZoneOffset offset)方法將此瞬間與偏移量組合在一起以建立OffsetDateTime

宣告

以下是java.time.Instant.atOffset(ZoneOffset offset)方法的宣告。

public OffsetDateTime atOffset(ZoneOffset offset)

引數

  • offset - 要與之結合的偏移量,而不是null。

返回值

從此瞬間和指定的偏移量形成的偏移日期時間,不為空。

異常

DateTimeException - 如果結果超出支援的範圍。

範例

以下範例顯示了java.time.Instant.atOffset(ZoneOffset offset)方法的用法。

package com.yiibai;

import java.time.Instant;
import java.time.OffsetDateTime;
import java.time.ZoneOffset;
import java.time.ZonedDateTime;

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

      Instant instant = Instant.parse("2017-02-03T10:37:30.00Z");
      System.out.println(instant);  

      ZoneOffset offset = ZoneOffset.ofHours(5);

      OffsetDateTime  date = instant.atOffset(offset);
      System.out.println(date);  
   }
}

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

2017-02-03T10:37:30Z
2017-02-03T15:37:30+05:00