-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathStopWatch.java
66 lines (56 loc) · 1.56 KB
/
StopWatch.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
Copyright (c) 2005, Corey Goldberg
StopWatch.java is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
Code Found at: http://www.goldb.org/stopwatchjava.html
Dec. 23 2011, Edited by Christopher Jeffery
*/
public class StopWatch
{
private long startTime = 0;
private long stopTime = 0;
private boolean running = false;
public boolean notRunning()
{
if(running)
return false;
return true;
}
public void start()
{
this.startTime = System.currentTimeMillis();
this.running = true;
}
public void stop()
{
this.stopTime = System.currentTimeMillis();
this.running = false;
}
//elaspsed time in milliseconds
public long getElapsedTime()
{
long elapsed;
if (running)
elapsed = (System.currentTimeMillis() - startTime);
else
elapsed = (stopTime - startTime);
return elapsed;
}
//elaspsed time in seconds
public long getElapsedTimeSecs()
{
long elapsed;
if (running)
elapsed = ((System.currentTimeMillis() - startTime) / 1000);
else
elapsed = ((stopTime - startTime) / 1000);
return elapsed;
}
//average time in milliseconds
public long getAverageTime(int denominator)
{
return getElapsedTime() / denominator;
}
}