java.time.ZonedDateTime.toLocalTime() 方法示例



说明

java.time.ZonedDateTime.toLocalTime() 方法获取此日期时间的 LocalTime 部分。

声明

以下是 java.time.ZonedDateTime.toLocalTime() 方法的声明。

public LocalTime toLocalTime()

返回值

此日期时间的非空时间部分。

示例

以下示例展示了 java.time.ZonedDateTime.toLocalTime() 方法的使用。

package com.tutorialspoint;

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
广告