El método isAfter() de la interfaz ChronoLocalDate en Java comprueba si esta fecha es posterior a la fecha especificada y devuelve un valor booleano que indica lo mismo.
Sintaxis :
public boolean isAfter(ChronoLocalDate date2)
Parámetro : este método acepta un solo parámetro obligatorio date2 la otra fecha para comparar y no es nula.
Valor devuelto : la función devuelve verdadero si esta fecha es posterior a la fecha especificada.
Los siguientes programas ilustran el método isAfter() de ChronoLocalDate en Java:
Programa 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)); } }
Producción:
true
Programa 2 :
// 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)); } }
Producción:
false
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA