Java中的 ChronoLocalDate lengthOfYear() 方法及示例
Java中ChronoLocalDate接口的lengthOfYear()方法返回这个日期所代表的年份的长度。
语法:
public int lengthOfYear()
参数:此方法不接受参数。
返回值:如果年份是闰年,该函数返回366 ,否则返回365 。
下面的程序说明了Java中 ChronoLocalDate 的lengthOfYear()方法:
程序 1 :
// Program to illustrate the lengthOfYear() method
import java.util.*;
import java.time.*;
import java.time.chrono.*;
public class GfG {
public static void main(String[] args)
{
// Parses the date
ChronoLocalDate dt1
= LocalDate.parse("2018-11-27");
// Get the length of the year
System.out.println(dt1.lengthOfYear());
}
}
输出:
365
方案二:
// Program to illustrate the lengthOfYear() method
import java.util.*;
import java.time.*;
import java.time.chrono.*;
public class GfG {
public static void main(String[] args)
{
// Parses the date
ChronoLocalDate dt1
= LocalDate.parse("2016-11-27");
// Get the length of the year
System.out.println(dt1.lengthOfYear());
}
}
输出:
366
参考:https://docs.oracle.com/javase/9/docs/api/ Java/time/chrono/ChronoLocalDate.html#lengthOfYear–