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


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


在ZonedDateTime類中,根據傳遞給它的參數,存在三種類型的now()方法。

now()

ZonedDateTime類的now()方法用於從默認時區中的係統時鍾獲取當前日期時間,該方法將基於具有默認時區的係統時鍾返回ZonedDateTime以獲取當前日期時間。時區和偏移將根據時鍾中的時區進行設置。

用法:


public static ZonedDateTime now()

參數:此方法不接受任何參數。

返回值:此方法使用係統時鍾返回當前日期時間。

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

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

now(Clock clock)

ZonedDateTime類的now(Clock clock)方法用於根據作為參數傳遞的指定時鍾返回當前日期時間。zone和offset將根據時鍾中的時區進行設置。

用法:

public static ZonedDateTime now(Clock clock)

參數:此方法接受clock作為參數,這是要使用的時鍾。

返回值:此方法返回當前日期時間。

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

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

now(ZoneId zone)

ZonedDateTime類的now(ZoneId zone)方法用於從作為參數傳遞的指定時區中的係統時鍾返回當前日期時間。指定時區可以避免依賴默認時區。偏移量將從指定的時區計算得出。

用法:

public static ZonedDateTime now(ZoneId zone)

參數:此方法接受zone作為參數來使用。

返回值:此方法返回當前日期時間。

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

// Java program to demonstrate 
// ZonedDateTime.now() method 
  
import java.time.*; 
  
public class GFG { 
    public static void main(String[] args) 
    { 
  
        // create a clock 
        ZoneId zid = ZoneId.of("Europe/Paris"); 
  
        // create an ZonedDateTime object using now(zoneId) 
        ZonedDateTime lt 
            = ZonedDateTime.now(zid); 
  
        // print result 
        System.out.println("ZonedDateTime : "
                           + lt); 
    } 
}
輸出:
ZonedDateTime : 2019-01-21T06:36:30.188+01:00[Europe/Paris]

參考文獻:
https://docs.oracle.com/javase/10/docs/api/java/time/ZonedDateTime.html#now()



相關用法


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