當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Java OffsetTime now()用法及代碼示例


  1. 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
    
  2. 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]
    
  3. 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-



相關用法


注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 OffsetTime now() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。