Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

( The Time class ) Design a class named Time . The class contains: -The private data fields hour , minute , and second that

(The Time class) Design a class named Time. The class contains:

-The private 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.

(Hint: The first two constructors will extract the hour, minute, and second from the elapsed time. For the no-arg constructor, the current time can be obtained using System.currentTimeMillis(), as shown in Listing 2.7,

ShowCurrentTime.java. See below). Then, create a third time object from Scanner input that receives a new milliseconds amount from the console, and extract the hour, minute, and second in the above format.

public class ShowCurrentTime{

public static void main (string[] args) {

Long totalmilliseconds = System.currentTimeMillis();

Long totalSeconds = (totalSeconds / 1000);

Long currentSecond = (totalSeconds % 60);

Long totalMinutes = (totalSeconds / 60);

Long currentMinute = (totalMinutes % 60);

Long totalHours = (totalMinutes / 60);

Long currenthour = (totalHours % 24);

System.out.println("The current time:" + currentHour + ":" + currentMinute + ":" + currentSecond + "GMT");

Sample run:

Hour: 1 Minute: 13 Second: 1

Hour: 10 Minute: 19 Second: 10

Enter a time in milliseconds: 120000

Hour: 0 Minute: 2 Second: 0

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Intelligent Information And Database Systems Asian Conference Aciids 2012 Kaohsiung Taiwan March 19 21 2012 Proceedings Part 3 Lnai 7198

Authors: Jeng-Shyang Pan ,Shyi-Ming Chen ,Ngoc-Thanh Nguyen

2012th Edition

3642284922, 978-3642284922

More Books

Students also viewed these Databases questions

Question

What is the value - weighted index value

Answered: 1 week ago

Question

Recognize the power of service guarantees.

Answered: 1 week ago