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


Java Instant now()用法及代码示例


在Instant类中,根据传递给它的参数,有两种类型的now()方法。

now()

Instant类的now()方法用于从系统UTC时钟获取当前时刻。此方法将基于系统UTC时钟返回时刻。

用法:


public static Instant now()

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

返回值:此方法使用系统时钟返回当前时刻

以下示例程序旨在说明now()方法:
示例1:

// Java program to demonstrate 
// Instant.now() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create an Instant object 
        Instant lt 
            = Instant.now(); 
  
        // print result 
        System.out.println("Instant : "
                           + lt); 
    } 
}
输出:
Instant : 2019-01-21T05:47:26.853Z

now(Clock clock)

Instant类的now(Clock clock)方法,用于根据作为参数传递的指定时钟返回当前时刻。

用法:

public static Instant now(Clock clock)

参数:此方法接受clock作为参数,这是要使用的时钟。

返回值:此方法返回当前时刻。

以下示例程序旨在说明now()方法:
示例1:

// Java program to demonstrate 
// Instant.now() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a clock 
        Clock cl = Clock.systemUTC(); 
  
        // create an Instant object using now(Clock) 
        Instant lt 
            = Instant.now(cl); 
  
        // print result 
        System.out.println("Instant : "
                           + lt); 
    } 
}
输出:
Instant : 2019-01-21T05:47:29.886Z

参考文献:
https://docs.oracle.com/javase/10/docs/api/java/time/Instant.html#now()



相关用法


注:本文由纯净天空筛选整理自AmanSingh2210大神的英文原创作品 Instant now() Method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。