Heim  >  Artikel  >  Java  >  Welche Bedeutung hat die ofInstant()-Methode in Java 9?

Welche Bedeutung hat die ofInstant()-Methode in Java 9?

WBOY
WBOYnach vorne
2023-09-13 13:57:031084Durchsuche

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

In Java 9 wurde die Methode ofInstant() zur Konvertierung eingeführt. Es handelt sich um eine statische Methode der Klassen LocalDate, LocalTime und LocalDateTime . Diese Methode konvertiert ein java.time.Instant-Objekt in ein LocalDate und erfordert eine Zeitzone in Form von java.time.ZoneId.

Syntax

<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>

Beispiel

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);
   }
}

Ausgabe

<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>

Das obige ist der detaillierte Inhalt vonWelche Bedeutung hat die ofInstant()-Methode in Java 9?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!

Stellungnahme:
Dieser Artikel ist reproduziert unter:tutorialspoint.com. Bei Verstößen wenden Sie sich bitte an admin@php.cn löschen