Java YearMonth isValidDay()方法及示例
Java中YearMonth类 的 isValidDay() 方法是用来检查这个YearMonth对象和一个由整数表示的月日是否可以组成一个有效的日期。
语法:
public boolean isValidDay(int monthDay)
参数 :该方法接受一个参数 monthDay ,代表一个需要与这个YearMonth对象一起检查的月日。
返回值 :如果这个YearMonth对象和给定的以整数表示的月日一起构成一个有效的日期,它将返回一个 布尔值 True,否则将返回False。
以下程序说明了Java中的YearMonth.isValidDay()方法。
程序1 :
// Program to illustrate the isValidDay() 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);
// Check if the day passed is valid
System.out.println(yearMonth.isValidDay(24));
}
}
输出。
true
程序2 :在下面的程序中,年份被提及为1990年,这不是一个闰年,但月日代表一个闰年。因此,它们一起不能构成一个有效的日期,所以该方法将返回错误。
// Program to illustrate the isValidDay() 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);
// Check if the day passed is valid
System.out.println(yearMonth.isValidDay(29));
}
}
输出。
false
参考资料 : https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#isValidDay-java.time.MonthDay-