Here, we will create objects of the Date class and compare dates using the compareTo() method.
The compareTo() method returns:
- 0 if both are equal.
- >0 if the current date object comes after the specified date object.
- < 0 if the current date object comes before the specified date object.
Program/Source Code:
The source code to demonstrate the compareTo() method of the Date class is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.
Output:
Explanation:
Here, we used an object-oriented approach to create the program. And, we imported the Date class using the below statement,
Then we created a singleton object Sample and defined the main() function. The main() function is the entry point for the program.
In the main() function, we created three objects of the Date class and compare them using the compareTo() method, and printed the appropriate message on the console screen.
need an explanation for this answer? contact us directly to get an explanation for this answer