aktuelle.kurse/oldies/m411/docs/Daten-Uebungen-CodeBeispiele/Stopwatch.java
Müller Harald 3fdacd20c0 muh
2022-07-28 09:14:44 +02:00

31 lines
484 B
Java

/**
* Used from the book by R. Sedgwick.
* @author littleJ
*
*/
public class Stopwatch {
private final long start;
/**
* Create a stopwatch object.
*/
public Stopwatch() {
start = System.currentTimeMillis();
}
/**
* Return elapsed time (in seconds) since this object was created.
*/
public double elapsedTime() {
long now = System.currentTimeMillis();
return (now - start) / 1000.0;
}
}