Die Methode now() der Java-Instant-Klasse wird verwendet, um den aktuellen Zeitpunkt aus der Systemuhr abzurufen.
Die Java Instant now()-Methode besteht aus 2 Parametern:
- Java Instant now()-Methode
- Java Instant Now(Clock Clock)-Methode
Die Instant now()-Methode fragt die UTC-Uhr des Systems ab, um den aktuellen Zeitpunkt zu erhalten.
Die Instant Now-Methode (Clock Clock) fragt das angegebene Jetzt ab, um die aktuelle Uhrzeit zu erhalten.
Syntax
public Instant now() public Instant now(Clock clock)
Parameter
Uhr – die zu verwendende Uhr, nicht null.
Zurückkehren
Der aktuelle Zeitpunkt, nicht null.
Der aktuelle Zeitpunkt unter Verwendung der Systemuhr, nicht null.
Beispiel für die Java Instant now()-Methode
Beispiel 1
import java.time.Instant; public class InstantNowExample1 { public static void main(String[] args) { Instant instant = Instant.now(); System.out.println(instant.getEpochSecond()); } }Testen Sie es jetzt
Ausgabe:
Die Ausgabe wird so sein.
1410134852
Beispiel 2
import java.time.Instant; public class InstantNowExample2 { public static void main(String... args) { Instant i = Instant.now(); System.out.println(i); } }Testen Sie es jetzt
Ausgabe:
Die Ausgabe wird so sein.
2017-05-01T20:57:32.709Z
Beispiel für die Java Instant Now-Methode (Clock Clock).
Beispiel 3
import java.time.Clock; import java.time.Instant; public class InstantNowExample3 { public static void main(String[] args) { Instant instant = Instant.now(Clock.systemUTC()); System.out.println(instant); } }Testen Sie es jetzt
Ausgabe:
Die Ausgabe wird so sein.
2017-03-15T09:18:34.062Z
Beispiel 4
import java.time.Clock; import java.time.Instant; import java.time.ZoneId; public class InstantNowExample4 { public static void main(String... args) { Instant i = Instant.now(Clock.system(ZoneId.of('America/Chicago'))); System.out.println(i); } }Testen Sie es jetzt
Ausgabe:
Die Ausgabe wird so sein.
2017-05-01T20:57:34.818Z