java.time.ZonedDateTime.of(LocalDateTime date, ZoneId zone)方法

2019-10-16 22:34:06

java.time.ZonedDateTime.of(LocalDateTime date,ZoneId zone)方法從日期時間和時區獲取ZonedDateTime的範例。

宣告

以下是java.time.ZonedDateTime.of(LocalDateTime date,ZoneId zone)方法的宣告。

public static ZonedDateTime of(LocalDateTime date, ZoneId zone)

引數

  • date - 本地日期時間,不為null
  • zone - 時區,不為null

返回值

分割區日期時間,不為null

範例

以下範例顯示了java.time.ZonedDateTime.of(LocalDateTime date,ZoneId zone)方法的用法。

package com.yiibai;

import java.time.LocalDateTime;
import java.time.ZonedDateTime;
import java.time.ZoneId;

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

      ZonedDateTime date = ZonedDateTime.of(LocalDateTime.now(), ZoneId.systemDefault());
      System.out.println(date);  
   }
}

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

2017-03-28T13:57:45.878+05:30[Asia/Calcutta]