Friday, December 12, 2025
HomeLanguagesJavaChronoLocalDate isAfter() method in Java with Examples

ChronoLocalDate isAfter() method in Java with Examples

The isAfter() method of ChronoLocalDate interface in Java checks if this date is after the specified date and returns a boolean value stating the same.

Syntax:

public boolean isAfter(ChronoLocalDate date2)

Parameter: This method accept a single mandatory parameter date2 the other date to compare to and not null.

Return Value: The function returns true if this date is after the specified date.

Below programs illustrate the isAfter() method of ChronoLocalDate in Java:

Program 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));
    }
}


Output:

true

Program 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));
    }
}


Output:

false

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#isAfter-java.time.chrono.ChronoLocalDate-

RELATED ARTICLES

Most Popular

Dominic
32446 POSTS0 COMMENTS
Milvus
105 POSTS0 COMMENTS
Nango Kala
6814 POSTS0 COMMENTS
Nicole Veronica
11952 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12030 POSTS0 COMMENTS
Shaida Kate Naidoo
6949 POSTS0 COMMENTS
Ted Musemwa
7199 POSTS0 COMMENTS
Thapelo Manthata
6895 POSTS0 COMMENTS
Umr Jansen
6882 POSTS0 COMMENTS