java.time.YearMonth.equals() Method Example



Description

The java.time.YearMonth.equals(YearMonth otherYearMonth) method checks if this YearMonth is equal to the specified YearMonth.

Declaration

Following is the declaration for java.time.YearMonth.equals(YearMonth otherYearMonth) method.

public int equals(YearMonth otherYearMonth)

Parameters

otherYearMonth − the other YearMonth, null returns false.

Return Value

true if the other YearMonth is equal to this one.

Example

The following example shows the usage of java.time.YearMonth.equals(YearMonth otherYearMonth) method.

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));
   }
}

Let us compile and run the above program, this will produce the following result −

false
Advertisements