阅读量:0
Java中可以使用System.currentTimeMillis()或System.nanoTime()方法来计算程序运行的时间。
- 使用System.currentTimeMillis()方法:
long startTime = System.currentTimeMillis(); // 程序运行代码 long endTime = System.currentTimeMillis(); long totalTime = endTime - startTime; System.out.println("程序运行时间:" + totalTime + "毫秒");
- 使用System.nanoTime()方法:
long startTime = System.nanoTime(); // 程序运行代码 long endTime = System.nanoTime(); long totalTime = endTime - startTime; System.out.println("程序运行时间:" + totalTime + "纳秒");
注意:System.nanoTime()方法相较于System.currentTimeMillis()方法具有更高的精度,但不适用于计算墙钟时间。所以在计算程序运行时间时,建议使用System.currentTimeMillis()方法。