Java MonthDay isValidYear()方法及示例
MonthDay 类的 isValidYear() 方法用于检查指定的年份是否对该月日有效。对于2月29日,该方法只能返回false。
语法
public boolean isValidYear?(int year)
参数: 该方法接受一个参数 year ,它是要验证的年份。
返回值: 如果该年份对该月日有效,该方法返回布尔值 “true”。
下面的程序说明了isValidYear()方法:
程序1 :
// Java program to demonstrate
// MonthDay.isValidYear() method
import java.time.*;
import java.time.temporal.ChronoField;
public class GFG {
public static void main(String[] args)
{
// create a MonthDay object
MonthDay month = MonthDay.parse("--10-12");
// apply isValidYear() method
boolean value = month.isValidYear(2012);
// print result
System.out.println("Year 2012 is valid for monthday: "
+ month + " = " + value);
}
}
输出。
Year 2012 is valid for monthday: --10-12 = true
程序2
// Java program to demonstrate
// MonthDay.isValidYear() method
import java.time.*;
import java.time.temporal.ChronoField;
public class GFG {
public static void main(String[] args)
{
// create a MonthDay object
MonthDay month = MonthDay.parse("--02-29");
// apply isValidYear() method
boolean value = month.isValidYear(2017);
// print result
System.out.println("Year 2017 is valid for monthday: "
+ month + " = " + value);
}
}
输出。
Year 2017 is valid for monthday: --02-29 = false
**参考文献: ** https://docs.oracle.com/javase/10/docs/api/java/time/MonthDay.html#isValidYear(int)