LoginSignup
20
19

More than 5 years have passed since last update.

ナノ秒単位での時間計測

Posted at

JavaでSystem.nanoTimeを使って処理時間を計測します

long start = System.nanoTime();
// Some processing
long end = System.nanoTime();
System.out.println("Time:" + (end - start) / 1000000f + "ms");
20
19
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
20
19