Java中的YearMonth类的isValidDay()方法用于检查此YearMonth对象和以方法的参数形式提供的整数表示的month-day是否可以形成有效日期。
用法:
public boolean isValidDay(int monthDay)
参数:此方法接受单个参数monthDay,该参数表示month-day,需要使用YearMonth对象进行检查。
返回值:如果此YearMonth对象和以整数表示的给定month-day一起可以形成有效日期,则返回布尔值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年,它不是a年,但month-day代表a年。因此,它们加在一起不能形成有效日期,因此该方法将返回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://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#isValidDay-java.time.MonthDay-
相关用法
- Java YearMonth with()用法及代码示例
- Java YearMonth until()用法及代码示例
- Java YearMonth withYear()用法及代码示例
- Java YearMonth isAfter()用法及代码示例
- Java YearMonth plus(TemporalAmount)用法及代码示例
- Java YearMonth range()用法及代码示例
- Java YearMonth query()用法及代码示例
- Java YearMonth lengthOfYear()用法及代码示例
- Java YearMonth isLeapYear()用法及代码示例
- Java YearMonth withMonth()用法及代码示例
- Java YearMonth isBefore()用法及代码示例
- Java YearMonth minus(TemporalAmount)用法及代码示例
- Java YearMonth isSupported(TemporalField)用法及代码示例
- Java YearMonth isSupported(TemporalUnit)用法及代码示例
- Java YearMonth parse(CharSequence)用法及代码示例
注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 YearMonth isValidDay() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。