El mètode now() de la classe Java Instant s'utilitza per obtenir l'instant actual del rellotge del sistema.
El mètode Java Instant now() consta de 2 paràmetres:
- Mètode Java Instant now().
- Mètode Java Instant now (rellotge de rellotge).
El mètode Instant now() consultarà el rellotge UTC del sistema per obtenir l'instant actual.
El mètode Instant ara (rellotge del rellotge) consultarà l'ara especificat per obtenir l'hora actual.
font gimp
Sintaxi
public Instant now() public Instant now(Clock clock)
Paràmetres
rellotge - el rellotge a utilitzar, no nul.
Tornar
L'instant actual, no nul.
L'instant actual que utilitza el rellotge del sistema, no nul.
Exemple del mètode Java Instant now().
Exemple 1
import java.time.Instant; public class InstantNowExample1 { public static void main(String[] args) { Instant instant = Instant.now(); System.out.println(instant.getEpochSecond()); } }Prova-ho ara
Sortida:
La sortida serà així.
c++ int a cadena
1410134852
Exemple 2
import java.time.Instant; public class InstantNowExample2 { public static void main(String... args) { Instant i = Instant.now(); System.out.println(i); } }Prova-ho ara
Sortida:
La sortida serà així.
2017-05-01T20:57:32.709Z
Exemple del mètode Java Instant now (rellotge del rellotge).
Exemple 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); } }Prova-ho ara
Sortida:
La sortida serà així.
2017-03-15T09:18:34.062Z
Exemple 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); } }Prova-ho ara
Sortida:
La sortida serà així.
2017-05-01T20:57:34.818Z