java.time.YearMonth.equals(YearMonth otherYearMonth)方法

2019-10-16 22:35:23

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