Design a class named Time. The class contains:??The data fields?hour,?minute, and?second?that represent a time.? A no-arg constructor

Question:

Design a class named Time. The class contains:??The data fields?hour,?minute, and?second?that represent a time.? A no-arg constructor that creates a Time object for the current time. (The values of the data fields will represent the current time.)? A constructor that constructs a Time object with a specified elapsed time since midnight, January 1, 1970, in milliseconds. (The values of the data fields will represent this time.)? A constructor that constructs a Time object with the specified hour, minute, and second.? Three getter methods for the data fields hour, minute, and second, respectively.? A method named setTime(long elapseTime) that sets a new time for the object using the elapsed time. For example, if the elapsed time is 555550000 milliseconds, the hour is 10, the minute is 19, and the second is 10.Draw the UML diagram for the class and then implement the class. Write a test program that creates two Time objects (using new Time() and new Time(555550000)) and displays their hour, minute, and second in the format hour:minute:second.

Listing

image

image

image

Line 4 invokes?System.currentTimeMillis()?to obtain the current time in milliseconds as a?long?value. Thus, all the variables are declared as the long type in this program. The seconds, minutes, and hours are extracted from the current time using the?/?and?%?operators (lines 6?22).

image

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  answer-question
Question Posted: