The equals() method of YearMonth class in Java is used to compare two YearMonth objects. It compares this YearMonth object to the YearMonth object passed to it as parameter and checks if two YearMonth instances are equal or not.
Syntax:
public boolean equals(Object otherYearMonth)
Parameter: This method accepts a single parameter otherYearMonth which is the other YearMonth instance with which this YearMonth is to be compared.
Return Value: It returns true if this YearMonth is equal to otherYearMonth otherwise it returns False.
Below programs illustrate the equals() method of YearMonth in Java:
Program 1:
| // Program to illustrate the equals() method Âimportjava.util.*;importjava.time.*; ÂpublicclassGfG {    publicstaticvoidmain(String[] args)    { Â        // Creates first YearMonth object        YearMonth firstYearMonth = YearMonth.of(2017, 8); Â        // Creates second YearMonth object        YearMonth secondYearMonth = YearMonth.of(2016, 11); Â        // check if the two YearMonth instances are equal        System.out.println(firstYearMonth.equals(secondYearMonth));    }} | 
false
Program 2:
| // Program to illustrate the equals() method Âimportjava.util.*;importjava.time.*; ÂpublicclassGfG {    publicstaticvoidmain(String[] args)    {        // Creates first YearMonth object        YearMonth firstYearMonth = YearMonth.of(2017, 8); Â        // Creates second YearMonth object        YearMonth secondYearMonth = YearMonth.of(2017, 8); Â        // check if the two YearMonth instances are equal        System.out.println(firstYearMonth.equals(secondYearMonth));    }} | 
true
Reference: https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#equals-java.lang.Object-


 
                                    







