Java offsetTime now()方法及示例
- 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
- Java中OffsetTime类的now(clock)方法从参数中指定的时钟获取当前时间。
语法 :
public static OffsetTime now(Clock clock)
参数:该方法接受一个参数clock,指定要使用的时钟,且不为空。
返回值:它返回当前时间,而不是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)
参数:该方法接受一个参数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://docs.oracle.com/javase/8/docs/api/java/time/OffsetTime.html#now-long-