/**. A stopwatch accumulates time when it is running. Y
Added on -2019-09-16
| 2 pages
| 242 words
| 185 views
Trusted by 2+ million users, 1000+ happy students everyday
/**A stopwatch accumulates time when it is running. You can repeatedly start and stop the stopwatch. You can use astopwatch to measure the running time of a program.*/public class StopWatch{ private long elapsedTime;private long startTime;private boolean isRunning;/**Constructs a stopwatch that is in the stopped stateand has no time accumulated.*/public StopWatch(){ reset();}/**Starts the stopwatch. Time starts accumulating now.*/public void start(){ if (isRunning) { return; }isRunning = true;startTime = System.currentTimeMillis();}/**Stops the stopwatch. Time stops accumulating and isis added to the elapsed time.*/public void stop(){ if (!isRunning) { return; }isRunning = false;long endTime = System.currentTimeMillis();elapsedTime = elapsedTime + endTime - startTime;}/**Returns the total elapsed time.@return the total elapsed time*/public long getElapsedTime(){ if (isRunning) { long endTime = System.currentTimeMillis();return elapsedTime + endTime - startTime;}else{return elapsedTime;}}
Found this document preview useful?
You are reading a preview Upload your documents to download or Become a Desklib member to get accesss