Now()-metoden i Java Instant-klassen bruges til at hente det aktuelle øjeblik fra systemuret.
Java Instant now()-metoden består af 2 parametre:
- Java Instant now() metode
- Java Instant now (ur ur) metode
Metoden Instant now() vil forespørge systemets UTC-ur for at få det aktuelle øjeblik.
Instant now (Clock clock)-metoden vil forespørge på det angivne nu for at få det aktuelle klokkeslæt.
Syntaks
public Instant now() public Instant now(Clock clock)
Parametre
ur - uret der skal bruges, ikke null.
Vend tilbage
Det aktuelle øjeblik, ikke null.
Det aktuelle øjeblik, der bruger systemuret, ikke null.
Java Instant now() metode Eksempel
Eksempel 1
import java.time.Instant; public class InstantNowExample1 { public static void main(String[] args) { Instant instant = Instant.now(); System.out.println(instant.getEpochSecond()); } }Test det nu
Produktion:
Outputtet bliver sådan her.
1410134852
Eksempel 2
import java.time.Instant; public class InstantNowExample2 { public static void main(String... args) { Instant i = Instant.now(); System.out.println(i); } }Test det nu
Produktion:
Outputtet bliver sådan her.
2017-05-01T20:57:32.709Z
Java Instant now (Clock clock) metode Eksempel
Eksempel 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); } }Test det nu
Produktion:
Outputtet bliver sådan her.
2017-03-15T09:18:34.062Z
Eksempel 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); } }Test det nu
Produktion:
Outputtet bliver sådan her.
2017-05-01T20:57:34.818Z