📜  Java中的 Year isValidMonthDay() 方法

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

Java中的 Year isValidMonthDay() 方法

Java中 Year 类的 isValidMonthDay() 方法用于检查此 Year 对象与作为参数提供给该方法的 MonthDay 表示的月日一起是否可以形成有效日期。

语法

public boolean isValidMonthDay(MonthDay monthDay)

参数:此方法接受单个参数monthDay ,它表示需要使用此Year 对象检查的月日。

返回值:如果此 Year 对象和由 MonthDay 表示的给定月日一起可以形成有效日期,则返回布尔 True 值,否则返回 False。

下面的程序说明了Java中 Year 的 isValidMonthDay() 方法:
程序 1

// Program to illustrate the isValidMonthDay() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Create a Year object
        Year thisYear = Year.of(2016);
  
        // Creates a MonthDay object
        MonthDay monthDay = MonthDay.of(9, 15);
  
        // Check if this year object and given
        // MonthDay forms a valid date
        System.out.println(thisYear.isValidMonthDay(monthDay));
    }
}
输出:
true

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

// Program to illustrate the isValidMonthDay() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // Create a Year object
        Year thisYear = Year.of(1990);
  
        // Creates a MonthDay object
        MonthDay monthDay = MonthDay.of(2, 29);
  
        // Check if this year object and given
        // MonthDay forms a valid date
        System.out.println(thisYear.isValidMonthDay(monthDay));
    }
}
输出:
false

参考:https: Java/time/Year.html#isValidMonthDay-java.time.MonthDay-