Open In App

YearMonth equals() method in Java

Improve
Improve
Like Article
Like
Save
Share
Report

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
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(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));
    }
}


Output:

false

Program 2:




// Program to illustrate the equals() method
  
import java.util.*;
import java.time.*;
  
public class GfG {
    public static void main(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));
    }
}


Output:

true

Reference: https://docs.oracle.com/javase/8/docs/api/java/time/YearMonth.html#equals-java.lang.Object-



Last Updated : 28 Nov, 2018
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads