The equals() method of MonthDay class in Java checks if this month-day is equal to another month-day.
Syntax:
public boolean equals(Object obj)
Parameter: This method accepts a parameter obj which specifies if this month-day is equal to another month-day.
Returns: The function returns true if this is equal to the other time.
Below programs illustrate the MonthDay.equals() method:
Program 1:
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
MonthDay tm1 = MonthDay.parse( "--12-06" );
LocalDate dt1 = tm1.atYear( 2018 );
MonthDay tm2 = MonthDay.parse( "--12-06" );
LocalDate dt2 = tm2.atYear( 2018 );
System.out.println(dt1.equals(dt2));
}
}
|
Program 2:
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
MonthDay tm1 = MonthDay.parse( "--10-06" );
LocalDate dt1 = tm1.atYear( 2018 );
MonthDay tm2 = MonthDay.parse( "--12-06" );
LocalDate dt2 = tm2.atYear( 2018 );
System.out.println(dt1.equals(dt2));
}
}
|
Reference: https://docs.oracle.com/javase/8/docs/api/java/time/MonthDay.html#equals-java.lang.Object-