Skip to content

Instantly share code, notes, and snippets.

@sylvia43
Created August 27, 2015 13:39
Show Gist options
  • Save sylvia43/0eb6e0b2d94d61f55fa2 to your computer and use it in GitHub Desktop.
Save sylvia43/0eb6e0b2d94d61f55fa2 to your computer and use it in GitHub Desktop.
public class Timer {
private long startTime = 0;
public void start() {
startTime = System.currentTimeMillis();
}
public long stop() {
return System.currentTimeMillis() - startTime;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment