java.time.LocalDate.atStartOfDay(ZoneId zone)方法

2019-10-16 22:37:08

java.time.LocalDate.atStartOfDay(ZoneId zone)方法根據時區中的規則在最早的有效時間返回此日期的分割區日期時間。

宣告

以下是java.time.LocalDate.atStartOfDay(ZoneId zone)方法的宣告。

public ZonedDateTime atStartOfDay(ZoneId zone)

引數

  • zone - 要使用的區域ID,不為null

返回值

從此日期開始的分割區日期時間和區域的最早有效時間,不為null

範例

以下範例顯示了java.time.LocalDate.atStartOfDay(ZoneId zone)方法的用法。

package com.yiibai;

import java.time.LocalDate;
import java.time.ZoneId;
import java.time.ZonedDateTime;

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

      LocalDate date = LocalDate.parse("2017-02-03");
      System.out.println(date);  
      ZonedDateTime date1 = date.atStartOfDay(ZoneId.systemDefault());
      System.out.println(date1);  
   }
}

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

2017-02-03
2017-02-03T00:00+05:30[Asia/Calcutta]