The equals() method of LocalDateTime class in Java checks if this date-time is equal to another date-time. This other date-time is passed as the parameter. This method returns a boolean value showing the same.
Syntax:
public boolean equals(Object date2)
Parameter: This method accepts a parameter date2 which checks if this date-time is equal to another date-time.
Returns: The function returns a boolean value if this is equal to the other date-time.
Below programs illustrate the LocalDateTime.equals() method:
Program 1:
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
LocalDateTime dt1
= LocalDateTime
.parse( "2018-11-03T12:45:30" );
System.out.println( "Date 1: " + dt1);
LocalDateTime dt2
= LocalDateTime
.parse( "2018-11-03T12:45:30" );
System.out.println( "Date 2: " + dt2);
System.out.println( "Is Date 1 "
+ "equal to Date 2: "
+ dt2.equals(dt1));
}
}
|
Output:
Date 1: 2018-11-03T12:45:30
Date 2: 2018-11-03T12:45:30
Is Date 1 equal to Date 2: true
Program 2:
import java.util.*;
import java.time.*;
public class GfG {
public static void main(String[] args)
{
LocalDateTime dt1
= LocalDateTime
.parse( "1998-01-05T06:20:10" );
System.out.println( "Date 1: " + dt1);
LocalDateTime dt2
= LocalDateTime
.parse( "2018-11-03T12:45:30" );
System.out.println( "Date 2: " + dt2);
System.out.println( "Is Date 1 "
+ "equal to Date 2: "
+ dt2.equals(dt1));
}
}
|
Output:
Date 1: 1998-01-05T06:20:10
Date 2: 2018-11-03T12:45:30
Is Date 1 equal to Date 2: false
Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDateTime.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!
Last Updated :
30 Nov, 2018
Like Article
Save Article