Java year length()方法及实例
Java中Year类的length()方法用于返回该年对象的长度,即天数。Year只有两种可能的长度:365(非闰年)和366(闰年)。
语法:
public int length()
参数 :该方法不接受任何参数。
返回值 :它返回一个整数值,表示一年的长度(天数)。
以下程序说明了Java中Year的length()方法:
程序1 :
// Program to illustrate the length() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Create a Year object
Year thisYear = Year.of(2016);
// Print the length of this year in Number
// of days, 366 in this case as 2016 is
// a Leap Year
System.out.println(thisYear.length());
}
}
输出。
366
计划2 :
// Program to illustrate the length() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Create a Year object
Year thisYear = Year.of(1990);
// Print the length of this year in Number
// of days, 365 in this case as 1990 is not
// a Leap Year
System.out.println(thisYear.length());
}
}
输出。
365
参考资料 : https://docs.oracle.com/javase/8/docs/api/java/time/Year.html#length-