Java yearMonth lengthOfMonth方法()
Java中YearMonth类 的 lengthOfMonth() 方法用于返回该年月对象的月长,以天数计算。月长的数值范围是1到31。这个方法也考虑到了闰年的问题。
语法:
public int lengthOfMonth()
参数 :该方法不接受任何参数。
返回值 :它返回 一个整数值 ,表示一个月的天数。
以下程序说明了Java中YearMonth的lengthOfMonth()方法。
程序1 :
// Program to illustrate the lengthOfMonth() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Create YearMonth object
YearMonth yearMonth = YearMonth.of(2016, 2);
// Print the length of month in Number
// of days, 29 in this case as 2016 is
// a Leap Year
System.out.println(yearMonth.lengthOfMonth());
}
}
输出。
29
程序2 :
// Program to illustrate the lengthOfMonth() method
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
// Create YearMonth object
YearMonth yearMonth = YearMonth.of(1990, 2);
// Print the length of month in Number
// of days, 28 in this case as 1990 is
// not a Leap Year
System.out.println(yearMonth.lengthOfMonth());
}
}
输出。
28
参考资料 : https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#lengthOfMonth-