- Java中OffsetTime類的now()方法從默認時區的係統時鍾獲取當前時間。
用法:
public static OffsetTime now()
參數:此方法不接受任何參數。
返回值:它使用係統時鍾和默認時區返回當前時間,而不是null。
以下示例程序旨在說明now()方法:
示例1:
// Java program to demonstrate the now() method import java.time.OffsetTime; public class GFG { public static void main(String[] args) { // Parses the time OffsetTime time = OffsetTime.now(); // Prints the current time System.out.println("Current time: " + time); } }
輸出:Current time: 02:58:01.700Z
- Java中OffsetTime類的now(clock)方法從參數中的指定時鍾獲取當前時間。
用法:
public static OffsetTime now(Clock clock)
參數:此方法接受單個參數clock,該參數指定要使用的時鍾,而不是null。
返回值:它返回當前時間,而不是null。
以下示例程序旨在說明now(clock)方法:
示例1:
// Java program to demonstrate the now(clock) method import java.time.OffsetTime; import java.time.Clock; public class GFG { public static void main(String[] args) { // Parses the time OffsetTime time = OffsetTime.now(); // Prints the current time System.out.println("Current time: " + Clock.systemUTC()); } }
輸出:Current time: SystemClock[Z]
- Java中OffsetTime類的now(zone)方法從參數中指定時區的係統時鍾中獲取當前時間。
用法:
public static OffsetTime now(ZoneId zone)
參數:此方法接受單個參數區域,該區域指定要使用的區域ID,而不是null。
返回值:它返回當前時間,而不是null。
以下示例程序旨在說明now(clock)方法:
示例1:
// Java program to demonstrate the now(clock) method import java.time.OffsetTime; import java.time.ZoneId; public class GFG { public static void main(String[] args) { // Parses the time OffsetTime time = OffsetTime.now(); // Prints the current time System.out.println("Current time: " + ZoneId.systemDefault()); } }
輸出:Current time: Etc/UTC
參考: https://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#now-long-
相關用法
- Java OffsetTime until()用法及代碼示例
- Java OffsetTime from()用法及代碼示例
- Java OffsetTime get()用法及代碼示例
- Java OffsetTime plus()用法及代碼示例
- Java OffsetTime with()用法及代碼示例
- Java OffsetTime isBefore()用法及代碼示例
- Java OffsetTime format()用法及代碼示例
- Java OffsetTime toLocalTime()用法及代碼示例
- Java OffsetTime minus()用法及代碼示例
- Java OffsetTime minusSeconds()用法及代碼示例
- Java OffsetTime minusMinutes()用法及代碼示例
- Java OffsetTime isEqual()用法及代碼示例
- Java OffsetTime range()用法及代碼示例
- Java OffsetTime minusHours()用法及代碼示例
- Java OffsetTime plusMinutes()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 OffsetTime now() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。