在Java 9中,ofInstant()方法的重要性是什么?

在Java 9中,ofInstant()方法的重要性是什么?

在 Java 9 中,引入了 ofInstant() 方法进行转换。它是 LocalDate、LocalTime 和 LocalDateTime 类的静态方法。该方法将java.time.Instant对象转换为LocalDate,需要java.time.ZoneId形式的时区。

语法

public static LocalTime ofInstant(Instant instant, ZoneId zone) public static LocalDate ofInstant(Instant instant, ZoneId zone) public static LocalDateTime ofInstant(Instant instant, ZoneId zone)登录后复制