Home »
Java programming language
Java Date after() Method with Example
Date Class after() method: Here, we are going to learn about the after() method of Date Class with its syntax and example.
Submitted by Preeti Jain, on February 09, 2020
Date Class after() method
- after() method is available in java.util package.
- after() method is used to check whether this date is after the given date (d) or not.
- after() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.
- after() method may throw an exception at the time of the checking date.
NullPointerException: This exception may throw when the given parameter (d) is null exists.
Syntax:
public boolean after(Date d);
Parameter(s):
- Date d – represents the Date object to be tested.
Return value:
The return type of this method is boolean, it returns true when this date is after the given Date (d) otherwise it returns false.
Example:
// Java program to demonstrate the example
// of boolean after() method of Date
import java.util.*;
public class AfterDate {
public static void main(String[] args) {
// create two Date object with two dates
Date this_date = new Date(2016, 8, 20);
Date given_date = new Date(2010, 11, 30);
// By using after() method is to check
// whether this date (this_date) is after the
// given date (given_date) or not
boolean status = this_date.after(given_date);
// Display status
System.out.println("this_date.after(given_date): " + status);
}
}
Output
this_date.after(given_date): true