Answers for "get time of execution java"

1

java execution time

long start = System.currentTimeMillis();
class.method();
long time = System.currentTimeMillis() - start;
Posted by: Guest on January-15-2021
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
0

running time of java program

long startTime = System.nanoTime();
.....your program....
long endTime   = System.nanoTime();
long totalTime = endTime - startTime;
System.out.println(totalTime);
Posted by: Guest on June-05-2021

Code answers related to "get time of execution java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language