Java中的 LocalDateTime toLocalDate() 方法及示例
LocalDateTime 类的toLocalDate()方法用于获取此 LocalDateTime 的 LocalDate 表示。此方法派生自 Object Class,其行为方式类似。
句法:
public LocalDate toLocalDate()
参数:此方法不带参数。
返回:此方法返回一个LocalDate 值,该值是此 LocalDateTime 的 LocalDate 表示。
下面的程序说明了 LocalDateTime.toLocalDate() 方法:
方案一:
// Program to illustrate the toLocalDate() 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 LocalDate representation of this LocalDateTime
// using toLocalDate() method
System.out.println(dt.toLocalDate());
}
}
输出:
2018-11-30
方案二:
// Program to illustrate the toLocalDate() 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 LocalDate representation of this LocalDateTime
// using toLocalDate() method
System.out.println(dt.toLocalDate());
}
}
输出:
2018-11-03
参考: https: Java/time/LocalDateTime.html#toLocalDate()