java.time.ZonedDateTime.toOffsetDateTime()方法

2019-10-16 22:34:32

java.time.ZonedDateTime.toOffsetDateTime()方法將此日期時間轉換為OffsetDateTime

宣告

以下是java.time.ZonedDateTime.toOffsetDateTime()方法的宣告。

public OffsetDateTime toOffsetDateTime()

返回值

偏移日期時間,表示相同的本地日期時間和偏移量,不為null

範例

以下範例顯示了java.time.ZonedDateTime.toOffsetDateTime()方法的用法。

package com.yiibai;

import java.time.ZonedDateTime;

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

      ZonedDateTime date = ZonedDateTime.now();
      System.out.println(date.toOffsetDateTime());  
   }
}

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

2017-03-28T15:45:22.794+05:30