Java中的 LocalDateTime toLocalTime() 方法及示例
LocalDateTime 类的toLocalTime()方法用于获取此 LocalDateTime 的 LocalTime 表示。此方法派生自 Object Class,其行为方式类似。
句法:
public LocalTime toLocalTime()
参数:此方法不带参数。
返回:此方法返回一个LocalTime 值,该值是此 LocalDateTime 的 LocalTime 表示。
下面的程序说明了 LocalDateTime.toLocalTime() 方法:
方案一:
// Program to illustrate the toLocalTime() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Get the LocalDateTime instance
LocalDateTime dt = LocalDateTime.now();
// Get the LocalTime representation of this LocalDateTime
// using toLocalTime() method
System.out.println(dt.toLocalTime());
}
}
输出:
10:20:00.280
方案二:
// Program to illustrate the toLocalTime() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Get the LocalDateTime instance
LocalDateTime dt
= LocalDateTime
.parse("2018-11-03T12:45:30");
// Get the LocalTime representation of this LocalDateTime
// using toLocalTime() method
System.out.println(dt.toLocalTime());
}
}
输出:
12:45:30
参考: https: Java/time/LocalDateTime.html#toLocalTime()