在Java中,可以使用System.currentTimeMillis()或者System.nanoTime()来获取程序运行时间。以下是两种方法的示例代码:
long startTime = System.currentTimeMillis();
// your code here
long endTime = System.currentTimeMillis();
long duration = endTime - startTime;
System.out.println("Program execution time: " + duration + " milliseconds");
long startTime = System.nanoTime();
// your code here
long endTime = System.nanoTime();
long duration = (endTime - startTime) / 1000000; // 转换为毫秒
System.out.println("Program execution time: " + duration + " milliseconds");
请注意,System.nanoTime()提供了更高精度的计时,但在一些系统上可能受到CPU频率调整和系统定时器的影响。因此,在某些情况下,使用System.currentTimeMillis()可能更为稳定。
辰迅云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
推荐阅读: java中hmacsha256怎么使用