MonthDay isValidYear() 方法在 Java 中
在 Java 的 MonthDay 类中,可以使用 isValidYear() 方法检查一个年份是否对一个 MonthDay 对象有效。此方法需要一个单个参数,即需要检查的年份。此外,如果一个年份对一个 MonthDay 对象有效,则返回 true,如果不有效,则返回 false。
演示此操作的程序如下所示
示例
import java.time.*; public class Demo { public static void main(String[] args) { MonthDay md = MonthDay.parse("--02-21"); System.out.println("The MonthDay is: " + md); System.out.println("Year 2019 is valid for the MonthDay? " + md.isValidYear(2019)); } }
输出
The MonthDay is: --02-21 Year 2019 is valid for the MonthDay? true
现在让我们理解一下上面的程序。
首先,显示当前 MonthDay 对象。然后,使用 isValidYear() 方法检查一个年份是否对 MonthDay 对象有效。打印返回值。演示此操作的代码段如下:
MonthDay md = MonthDay.parse("--02-21"); System.out.println("The MonthDay is: " + md); System.out.println("Year 2019 is valid for the MonthDay? " + md.isValidYear(2019));
广告