Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Define a class named Time for encapsulating a time. The class contains the following: 1. A data field of the long time that stores

 image

Define a class named Time for encapsulating a time. The class contains the following: 1. A data field of the long time that stores the elapsed time since midnight, Jan 1, 1970. 2. A no-arg constructor that constructs a Time for the current time. 3. A constructor with the specified hour, minute, and second to create a Time. 4. A constructor with the specified elapsed time since midnight, Jan 1, 1970. 5. The getHour() method that returns the current hour in the range 0-23. 6. The getMinute() method that returns the current minute in the range 0-59. 7. The getSecond() method that returns the current second in the range 0-59. 8. The getSeconds() method that returns the elapsed total seconds. 9. The toString() method that returns a string such as "1 hour 2 minutes 1 second" and "14 hours 21 minutes 1 second". 10. Implement the Comparable interface to compare this Time with another one based on their elapse seconds. The compareTo method returns the difference between this object's elapse seconds and the another's. 11. Implement the Cloneable interface to clone a Time object. Write a test program that produces the following sample run: Sample Run - 1 Enter time1 (hour minute second): 331 34 674 19 hours 45 minutes 14 seconds Elapsed seconds in time1: 1194314 Enter time2 (elapsed time in seconds): 93889345 16 hours 22 minutes 25 seconds Elapsed seconds in time2: 93889345 time1.compareTo(time2)? -92695031 time3 is created as a clone of timel time1.compareTo(time3)? 0 End Sample Run - 1 Sample Run - 2 Enter time1 (hour minute second): 123 1 hour 2 minutes 3 seconds Elapsed seconds in time1: 3723 Enter time2 (elapsed time in seconds): 193032 5 hours 37 minutes 12 seconds Elapsed seconds in time2: 193032 time1.compareTo(time2)? -189309 time3 is created as a clone of timel time1.compareTo(time3)? 0 End Sample Run - 2

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered 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

Introduction to Java Programming, Comprehensive Version

Authors: Y. Daniel Liang

10th Edition

133761312, 978-0133761313

More Books

Students also viewed these Programming questions

Question

Write a program that displays Welcome to Java five times.

Answered: 1 week ago