java.time.YearMonth.equals() 方法

描述

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.tutorialspoint;

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