📌  相关文章
📜  Java中的 OffsetTime now() 方法及示例

📅  最后修改于: 2022-05-13 01:54:25.947000             🧑  作者: Mango

Java中的 OffsetTime now() 方法及示例

  1. Java中 OffsetTime 类的now()方法从默认时区的系统时钟中获取当前时间。

    句法 :

    public static OffsetTime now()
    

    参数:此方法不接受任何参数。

    返回值:使用系统时钟和默认时区返回当前时间,不为空。

    下面的程序说明了 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)
    

    参数:此方法接受单个参数时钟,该参数指定要使用的时钟且不为空。

    返回值:返回当前时间,不为空。

    下面的程序说明了 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)
    

    参数:此方法接受单个参数zone ,该参数指定要使用的区域 ID,而不是 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: Java/time/OffsetTime.html#now-long-