📜  Java中的 YearMonth isValidDay() 方法及示例

📅  最后修改于: 2022-05-13 01:54:20.175000             🧑  作者: Mango

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 :在下面的程序中,Year 被称为 1990,它不是闰年,但月日代表闰年。因此,它们一起无法形成有效日期,因此该方法将返回 false。

// 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: Java/time/YearMonth.html#isValidDay-java.time.MonthDay-