Q:

Scala program to demonstrate the after() method of Date class

belongs to collection: Scala Date & Time Programs

0

Here, we will create objects of the Date class and compare dates using the After() method. The After() method returns true if the specified date object is less than the current date object. Otherwise, it returns false.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Program/Source Code:

The source code to demonstrate the after() method of the Date class is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to demonstrate the
// after() method of Date class

import java.util.Date;

object Sample {
  def main(args: Array[String]) {
    var date1 = new Date(2021, 5, 10);
    var date2 = new Date(2021, 5, 11);
    var date3 = new Date(2021, 5, 9);

    var result: Boolean = false;

    result = date1.after(date2);
    if (result == true)
      println("Date date1 comes after date2");
    else
      println("Date date2 comes after date1");

    result = date1.after(date3);
    if (result == true)
      println("Date date1 comes after date3");
    else
      println("Date date3 comes after date1");
  }
}

Output:

Date date2 comes after date1
Date date1 comes after date3

Explanation:

Here, we used an object-oriented approach to create the program. And, we imported the Date class using the below statement,

import java.util.Date;

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 After() 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

total answers (1)

Scala program to demonstrate the before() method o... >>
<< Scala program to subtract days from the current da...