java.time.YearMonth.equals(YearMonth otherYearMonth)
方法檢查此YearMonth
是否等於指定的YearMonth
。
以下是java.time.YearMonth.equals(YearMonth otherYearMonth)
方法的宣告。
public int equals(YearMonth otherYearMonth)
otherYearMonth
- 另一個YearMonth
,如果是null
則返回false
。如果另一個YearMonth
等於此年月,則返回true
。
以下範例顯示了java.time.YearMonth.equals(YearMonth otherYearMonth)
方法的用法。
package com.yiibai;
import java.time.YearMonth;
public class YearMonthDemo {
public static void main(String[] args) {
YearMonth date = YearMonth.of(2005,11);
YearMonth date1 = YearMonth.of(2006,12);
System.out.println(date.equals(date1));
}
}
編譯並執行上面的程式,這將產生以下結果 -
false