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


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


Java中Year類的now()方法用於從默認時區的係統時鍾返回當前年份。

用法

public static Year now()

or,
public static Year now(Clock clock)

or,
public static Year now(ZoneId zone)

參數:該參數對於此方法是可選的,如上麵的語法所示。


返回值:如果未指定任何參數,它將在默認時區中從係統時鍾返回當前年份,否則它將使用指定的時鍾和時區來返回當前年份。它永遠不會返回NULL值

以下示例程序旨在說明Java中Year的length()方法:

示例1:

// Program to illustrate the now() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Create a Year object using now() method 
        // It will return the current year from the 
        // system clock in the default time-zone. 
        Year thisYear = Year.now(); 
  
        // Print the year object 
        System.out.println(thisYear); 
    } 
}
輸出:
2018

示例2::如果將時鍾指定為now()方法的參數。在這種情況下,它將使用默認時區,而不使用係統時鍾,而是使用在默認時區中作為參數傳遞的時鍾。

// Program to illustrate the now() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Create a Year object using now() method 
        // It will return the current year from the 
        // clock specified in the default time-zone. 
        Year thisYear = Year.now(Clock.systemUTC()); 
  
        // Print the year object 
        System.out.println(thisYear); 
    } 
}
輸出:
2018

示例3::如果將區域指定為now()方法的參數。在這種情況下,它將不使用默認時區,而是在為其提供的時區中使用system-clock作為參數。

// Program to illustrate the now() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Create a Year object using now() method 
        // It will return the current year from the 
        // system-clock in the time-zone specified 
        Year thisYear = Year.now(ZoneId.systemDefault()); 
  
        // Print the year object 
        System.out.println(thisYear); 
    } 
}
輸出:
2018

參考: https://docs.oracle.com/javase/8/docs/api/java/time/Year.html#now-



相關用法


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