当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。