Q:

Scala program to print the current date and time using Date class

belongs to collection: Scala Date & Time Programs

0

Here, we will create an object of the Date class. The Date class is available in the "java.util" package. Then we will print the current time on the console screen.

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 print the current date and time using the Date class is given below. The given program is compiled and executed on the ubuntu 18.04 operating system successfully.

// Scala program to print the current date and time
// using Date class

import java.util.Date;

object Sample {
  def main(args: Array[String]) {
    var dateObj = new Date();
    println("Current and time: \n" + dateObj);
  }
}

Output:

Current and time: 
Sun May 30 13:19:55 GMT 2021

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 an object dateObj of the Date class and then printed the current time using the dateObj object 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 format the current time using Sim... >>
<< Scala program to print the current date and time u...