Di Java 9, kaedah ofInstant() telah diperkenalkan untuk penukaran. Ia adalah kaedah statik kelas LocalDate, LocalTime dan LocalDateTime . Kaedah ini menukar objek java.time.Instant kepada LocalDate, yang memerlukan zon waktu dalam bentuk java.time.ZoneId#🎜🎜 .
Tatabahasa<strong>public static LocalTime ofInstant(Instant instant, ZoneId zone) public static LocalDate ofInstant(Instant instant, ZoneId zone) public static LocalDateTime ofInstant(Instant instant, ZoneId zone)</strong>
import java.time.LocalDate; import java.time.LocalTime; import java.time.LocalDateTime; import java.time.Instant; import java.time.ZoneId; public class OfInstantMethodTest { public static void main(String args[]) { <strong>Instant </strong>instant = Instant.<strong>parse</strong>("2020-02-05T02:35:15.245Z"); System.out.println("Instant: " + instant); <strong>LocalDate </strong>ld = LocalDate.<strong>ofInstant</strong>(instant, <strong>ZoneId</strong>.of("Asia/Kolkata")); System.out.println("LocalDate: " + ld); <strong>LocalTime </strong>lt = LocalTime.<strong>ofInstant</strong>(instant, <strong>ZoneId</strong>.of("Asia/Kolkata")); System.out.println("LocalTime: " + lt); <strong>LocalDateTime </strong>ldt = LocalDateTime.<strong>ofInstant</strong>(instant, <strong>ZoneId</strong>.of("Asia/Kolkata")); System.out.println("LocalDateTime: " + ldt); } }
<strong>Instant: 2020-02-05T02:35:15.245Z LocalDate: 2020-02-05 LocalTime: 08:05:15.245 LocalDateTime: 2020-02-05T08:05:15.245</strong>#🎜🎜
Atas ialah kandungan terperinci Apakah kepentingan kaedahInstant() dalam Java 9?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!