Skip to content

Instantly share code, notes, and snippets.

@jonjack
Last active October 16, 2019 10:52
Show Gist options
  • Save jonjack/f4d40d83b0ea7713419cd01dbe38515d to your computer and use it in GitHub Desktop.
Save jonjack/f4d40d83b0ea7713419cd01dbe38515d to your computer and use it in GitHub Desktop.
import java.time.LocalTime;
import java.util.concurrent.TimeUnit;
public class Timer {
public static void main(String[] args) {
LocalTime start = LocalTime.now();
// some event to be timed
LocalTime end = LocalTime.now();
long delta = TimeUnit.NANOSECONDS.toMillis(end.toNanoOfDay() - start.toNanoOfDay());
System.out.println("Time took: " + Double.valueOf(delta)/1000 + " seconds");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment