java.time.ZonedDateTime.toLocalTime()
方法獲取此日期時間的LocalTime
部分。
以下是java.time.ZonedDateTime.toLocalTime()
方法的宣告。
public LocalTime toLocalTime()
此日期時間的時間部分,不為null
。
以下範例顯示了java.time.ZonedDateTime.toLocalTime()
方法的用法。
package com.yiibai;
import java.time.ZonedDateTime;
public class ZonedDateTimeDemo {
public static void main(String[] args) {
ZonedDateTime date = ZonedDateTime.now();
System.out.println(date.toLocalTime());
}
}
編譯並執行上面的程式,這將產生以下結果 -
15:35:54.222