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


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。