Last active
October 16, 2019 10:52
-
-
Save jonjack/f4d40d83b0ea7713419cd01dbe38515d to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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