This example demonstrates how to use the System.nanoTime()
method to calculate processing execution time in higher resolution. The processing time calculated in nanoseconds resolution.
package org.kodejava.lang;
public class NanoSecondsTimerResolution {
public static void main(String[] args) {
// Get process execution start time in nanoseconds.
long start = System.nanoTime();
System.out.println("Process start... " + start);
try {
Thread.sleep(5000); // Simulate a long process.
} catch (InterruptedException e) {
e.printStackTrace();
}
// Get process execution finish time in nanoseconds.
long finish = System.nanoTime();
System.out.println("Process finish... " + finish);
// Calculate the process execution time.
long execTime = finish - start;
System.out.println("Processing time = " + execTime + "(ns)");
}
}
Latest posts by Wayan (see all)
- How do I get number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024