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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。