Java Year of()方法及示例
Java中Year类的of()方法是用来返回一个Year实例。它接受一个符合ISO日历系统的年份,并返回一个具有指定isoYear的年份实例。
语法:
public static Year of(int isoYear)
参数 :它接受一个单一的积分值isoYear作为唯一的参数,根据proleptic ISO日历系统。
返回值 : 它返回一个 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-