The equals() method of java.time.chrono.HijrahDate class is used to compare this hijrah date with another hijrah date.
Syntax:
public boolean equals(Object obj)
Parameter: This method takes an equivalent object as a parameter to compare with this hijrahdate .
Return Value: This method returns true if both the dates are equal otherwise false.
Below are the examples to illustrate the equals() method:
Example 1:
Java
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
public class GFG {
public static void main(String[] argv) {
try {
HijrahDate hidate1 = HijrahDate.now();
HijrahDate hidate2 = HijrahDate.now();
boolean status = hidate1.equals(hidate2);
if (status)
System.out.println( "both dates are equal" );
else
System.out.println( "both dates are not equal" );
} catch (DateTimeException e) {
System.out.println( "passed parameter can"
+ " not form a date" );
System.out.println( "Exception thrown: " + e);
}
}
}
|
Output
both dates are equal
Example 2:
Java
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
public class GFG {
public static void main(String[] argv) {
try {
HijrahDate hidate1 = HijrahDate.now();
HijrahDate hidate2
= HijrahDate.of( 1444 , 03 , 23 );
boolean status = hidate1.equals(hidate2);
if (status)
System.out.println( "both dates are equal" );
else
System.out.println( "both dates are not equal" );
} catch (DateTimeException e) {
System.out.println( "passed parameter can"
+ " not form a date" );
System.out.println( "Exception thrown: " + e);
}
}
}
|
Output
both dates are not equal
Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/HijrahDate.html#equals-java.lang.Object-
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!