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


Java Year of()用法及代码示例


Java中Year类的of()方法用于返回Year实例。它根据通用的ISO日历系统接受年份,并返回带有指定isoYear的Year实例。

用法

public static Year of(int isoYear)

参数:根据ISO ISO日历系统,它接受单个整数值isoYear作为唯一参数。


返回值:返回Year的一个实例。

异常:如果根据有效的ISO日历系统发现作为参数传递的年份无效,则将引发DateTimeException。

以下程序说明了Java中Year的length()方法:

示例1:

// Program to illustrate the of() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Create a valid Year object 
        // using of() method 
        Year thisYear = Year.of(2018); 
  
        // Print the year object 
        System.out.println(thisYear); 
    } 
}
输出:
2018

示例2:

// Program to illustrate the of() method 
  
import java.util.*; 
import java.time.*; 
  
public class GfG { 
    public static void main(String[] args) 
    { 
        // Create a valid Year object 
        // using of() method 
        Year thisYear = Year.of(1997); 
  
        // Print the year object 
        System.out.println(thisYear); 
    } 
}
输出:
1997

参考: https://docs.oracle.com/javase/8/docs/api/java/time/Year.html#of-int-



相关用法


注:本文由纯净天空筛选整理自barykrg大神的英文原创作品 Year of() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。