Java中的 ChronoLocalDate lengthOfMonth() 方法及示例
Java中ChronoLocalDate接口的lengthOfMonth()方法返回这个日期所代表的月份的长度。
语法:
public int lengthOfMonth()
参数:此方法不接受参数。
返回值:该函数以天为单位返回月份的长度。
下面的程序说明了Java中 ChronoLocalDate 的lengthOfMonth()方法:
程序 1 :
// Program to illustrate the lengthOfMonth() method
import java.util.*;
import java.time.*;
import java.time.chrono.*;
public class GfG {
public static void main(String[] args)
{
// Parse the date
ChronoLocalDate dt1
= LocalDate.parse("2018-11-27");
// Get the length of the month
System.out.println(dt1.lengthOfMonth());
}
}
输出:
30
方案二:
// Program to illustrate the lengthOfMonth() 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-01-27");
// Get the length of the month
System.out.println(dt1.lengthOfMonth());
}
}
输出:
31
参考:https://docs.oracle.com/javase/9/docs/api/ Java/time/chrono/ChronoLocalDate.html#lengthOfMonth–