Java 中的 LocalDateTime toLocalTime() 方法


可在 Java 中的 LocalDateTime 类的 toLocalTime() 方法中获取 LocalTime 的表示形式。此方法不要求参数,它会返回 LocalDateTime 对象的 LocalTime 值。

一个演示它的程序如下 −

示例

 演示

import java.time.*;
import java.util.*;
public class Demo {
   public static void main(String[] args) {
      LocalDateTime ldt = LocalDateTime.parse("2019-02-18T23:15:30");
      System.out.println("The LocalDateTime is: " + ldt);
      System.out.println("The LocalTime representation is: " + ldt.toLocalTime());
   }
}

输出

The LocalDateTime is: 2019-02-18T23:15:30
The LocalTime representation is: 23:15:30

现在让我们来理解一下上面的程序。

首先显示 LocalDateTime。然后使用 toLocalTime() 方法获得 LocalTime 的表示形式,并显示该表示形式。演示这一内容的代码片段如下 −

LocalDateTime ldt = LocalDateTime.parse("2019-02-18T23:15:30");
System.out.println("The LocalDateTime is: " + ldt);
System.out.println("The LocalTime representation is: " + ldt.toLocalTime());

更新于:2019 年 7 月 30 日

54 次浏览

开启你的 事业

完成课程后获得认证

开始
广告