Java中的 ChronoLocalDate isAfter() 方法及示例
Java中ChronoLocalDate接口的isAfter()方法检查此日期是否在指定日期之后,并返回一个布尔值,说明该日期相同。
语法:
public boolean isAfter(ChronoLocalDate date2)
参数:此方法接受一个强制参数date2另一个要比较的日期并且不为空。
返回值:如果此日期在指定日期之后,则该函数返回 true。
下面的程序说明了Java中 ChronoLocalDate 的isAfter()方法:
程序 1 :
// Program to illustrate the isAfter() method
import java.util.*;
import java.time.*;
import java.time.chrono.*;
public class GfG {
public static void main(String[] args)
{
// Parses the first date
ChronoLocalDate dt1
= LocalDate.parse("2018-11-27");
// Parses the second date
ChronoLocalDate dt2
= LocalDate.parse("2017-11-27");
// Check if the specified date
// is after this date
System.out.println(dt1.isAfter(dt2));
}
}
输出:
true
方案二:
// Program to illustrate the isAfter() method
import java.util.*;
import java.time.*;
import java.time.chrono.*;
public class GfG {
public static void main(String[] args)
{
// Parses the first date
ChronoLocalDate dt1
= LocalDate.parse("2018-11-27");
// Parses the second date
ChronoLocalDate dt2
= LocalDate.parse("2019-11-27");
// Check if the specified date
// is after this date
System.out.println(dt1.isAfter(dt2));
}
}
输出:
false
参考:https://docs.oracle.com/javase/9/docs/api/ Java/time/chrono/ChronoLocalDate.html#isAfter-java.time.chrono.ChronoLocalDate-