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()方法的参数。在这种情况下,它将不使用默认的时区,而是使用作为参数提供给它的时区的系统时钟。
// 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-