logo

שיטת Java Instant now()

שיטת now() של המחלקה Java Instant משמשת להשגת הרגע הנוכחי משעון המערכת.

שיטת Java Instant now() מורכבת מ-2 פרמטרים:

  • שיטת Java Instant now()
  • שיטת Java Instant now (שעון שעון).

השיטה Instant now() תבצע שאילתה בשעון UTC של המערכת כדי לקבל את הרגע הנוכחי.

השיטה המיידית עכשיו (שעון שעון) תבצע שאילתה על השעה שצוינה כעת כדי לקבל את השעה הנוכחית.

תחביר

 public Instant now() public Instant now(Clock clock) 

פרמטרים

שָׁעוֹן - השעון לשימוש, לא ריק.

לַחֲזוֹר

הרגע הנוכחי, לא ריק.

הרגע הנוכחי באמצעות שעון המערכת, לא null.

דוגמה לשיטת Java Instant now()

דוגמה 1

 import java.time.Instant; public class InstantNowExample1 { public static void main(String[] args) { Instant instant = Instant.now(); System.out.println(instant.getEpochSecond()); } } 
בדוק את זה עכשיו

תְפוּקָה:

הפלט יהיה כזה.

 1410134852 

דוגמה 2

 import java.time.Instant; public class InstantNowExample2 { public static void main(String... args) { Instant i = Instant.now(); System.out.println(i); } } 
בדוק את זה עכשיו

תְפוּקָה:

הפלט יהיה כזה.

המרת מחרוזת למספר שלם ב-java
 2017-05-01T20:57:32.709Z 

דוגמה לשיטת Java Instant now (שעון שעון).

דוגמה 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); } } 
בדוק את זה עכשיו

תְפוּקָה:

הפלט יהיה כזה.

 2017-03-15T09:18:34.062Z 

דוגמה 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); } } 
בדוק את זה עכשיו

תְפוּקָה:

הפלט יהיה כזה.

 2017-05-01T20:57:34.818Z