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