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-
相關用法
- Java Year until()用法及代碼示例
- Java Year from()用法及代碼示例
- Java Year with()用法及代碼示例
- Java Year of()用法及代碼示例
- Java Year get()用法及代碼示例
- Java Year minusYears()用法及代碼示例
- Java Year query()用法及代碼示例
- Java Year range()用法及代碼示例
- Java Year length()用法及代碼示例
- Java Year plusYears()用法及代碼示例
- Java Year getLong()用法及代碼示例
- Java Year adjustInto()用法及代碼示例
- Java Year plus(TemporalAmount)用法及代碼示例
- Java Year isLeap()用法及代碼示例
- Java Year isBefore()用法及代碼示例
注:本文由純淨天空篩選整理自barykrg大神的英文原創作品 Year now() method in Java with examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。