Java中的 Year of() 方法及示例
Java中 Year 类的 of() 方法用于返回 Year 实例。它根据 proleptic ISO 日历系统接受一年,并返回具有指定 isoYear 的 Year 实例。
语法:
public static Year of(int isoYear)
参数: 根据 proleptic ISO 日历系统,它接受单个整数值isoYear作为唯一参数。
返回值:它返回 Year 的一个实例。
异常:如果根据 proleptic 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
方案二:
// 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: Java/time/Year.html#of-int-