Final answer:
To complete the Clock class, implement the pulse method to increment the minutes, and upon reaching 60, reset minutes and increment hours, resetting hours at 24. The getHours and getMinutes methods simply return the current values.
Step-by-step explanation:
A student has asked for help in completing a Clock class in Java. The class should advance the time with each pulse received once a minute and keep track of hours and minutes.
The pulse method should be implemented such that it increments the minute by one. If the minutes reach 60, they should be reset to 0 and the hours should be incremented by one. If hours reach 24, they should also reset to 0. Here's the sample code fill-in:
public void pulse() {
minutes++;
if (minutes == 60) {
minutes = 0;
hours++;
if (hours == 24) {
hours = 0;
}
}
}
For the getHours and getMinutes methods:
public int getHours() {
return hours;
}
public int getMinutes() {
return minutes;
}