Java中的 ChronoLocalDateTime isEqual() 方法及示例
Java中ChronoLocalDateTime 接口的isEqual()方法用于检查作为参数传递的日期是否等于该 ChronoLocalDateTime 实例。它返回一个显示相同的布尔值。
句法:
public boolean isEqual(ChronoLocalDateTime otherDate)
参数:此方法接受参数otherDate ,该参数指定要与此 ChronoLocalDateTime 比较的其他日期时间。它不应该为空。
返回:该函数返回布尔值,显示此日期时间是否等于指定的日期时间。
下面的程序说明了 ChronoLocalDateTime.isEqual() 方法:
方案一:
// Program to illustrate the isEqual() method
import java.util.*;
import java.time.*;
import java.time.chrono.*;
public class GfG {
public static void main(String[] args)
{
// Parses the date
ChronoLocalDateTime dt1
= LocalDateTime.parse("2018-11-03T12:45:30");
// Prints the date
System.out.println(dt1);
// Parses the date
ChronoLocalDateTime dt2
= LocalDateTime.parse("2016-12-04T12:45:30");
// Prints the date
System.out.println(dt2);
// Compares both dates
System.out.println(dt1.isEqual(dt2));
}
}
输出:
2018-11-03T12:45:30
2016-12-04T12:45:30
false
方案二:
// Program to illustrate the isEqual() method
import java.util.*;
import java.time.*;
import java.time.chrono.*;
public class GfG {
public static void main(String[] args)
{
// Parses the date
ChronoLocalDateTime dt1
= LocalDateTime.parse("2018-11-03T12:45:30");
// Prints the date
System.out.println(dt1);
// Parses the date
ChronoLocalDateTime dt2
= LocalDateTime.parse("2019-12-04T12:45:30");
// Prints the date
System.out.println(dt2);
// Compares both dates
System.out.println(dt1.isEqual(dt2));
}
}
输出:
2018-11-03T12:45:30
2019-12-04T12:45:30
false
参考: https://docs.oracle.com/javase/9/docs/api/ Java/time/chrono/ChronoLocalDateTime.html#isEqual-java.time.chrono.ChronoLocalDateTime-