Answers for "how to check method execution time in java"

1

java execution time

long start = System.currentTimeMillis();
class.method();
long time = System.currentTimeMillis() - start;
Posted by: Guest on January-15-2021

Code answers related to "how to check method execution time in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language