Answers for "how to see how much time my code takes to end in java"

2

java measure execution time

Instant start = Instant.now();
Thread.sleep(63553);
Instant end = Instant.now();
System.out.println(Duration.between(start, end)); // prints PT1M3.553S
Posted by: Guest on October-24-2020

Code answers related to "how to see how much time my code takes to end in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language