Java中ChronoLocalDate接口的lengthOfYear()方法返回此日期表示的年份的长度。
用法:
public int lengthOfYear()
参数:此方法不接受参数。
返回值:如果年份是leap年,则函数返回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
程序2:
// 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–
相关用法
- Java ChronoLocalDate until(ChronoLocalDate)用法及代码示例
- Java LocalDate lengthOfYear()用法及代码示例
- Java YearMonth lengthOfYear()用法及代码示例
- Java ChronoLocalDate from()用法及代码示例
- Java ChronoLocalDate get()用法及代码示例
- Java ChronoLocalDate format()用法及代码示例
- Java ChronoLocalDate compareTo()用法及代码示例
- Java ChronoLocalDate getChronology()用法及代码示例
- Java ChronoLocalDate hashCode()用法及代码示例
- Java LocalDate until(ChronoLocalDate)用法及代码示例
- Java ChronoLocalDate toEpochDay()用法及代码示例
- Java ChronoLocalDate plus(TemporalAmount)用法及代码示例
- Java ChronoLocalDate isBefore()用法及代码示例
- Java ChronoLocalDate range()用法及代码示例
- Java ChronoLocalDate isAfter()用法及代码示例
注:本文由纯净天空筛选整理自Kirti_Mangal大神的英文原创作品 ChronoLocalDate lengthOfYear() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。