欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

测试程序中代码的运行时间 博客分类: JAVA java 

程序员文章站 2024-03-22 21:30:58
...

闲着没事就想测试下程序运行代码的时间,搜了两个测试代码的方法,和大家一起分享:

1.以毫秒为单位(ms)

public static void main(String[] args) {
//get start time
long startTime = System.currentTimeMillis();
//test the code
test code
//get the end time
long endTime = System.currentTimeMillis();
System.out.println("take the time is: " + (endTime - startTime) + " ns")
}

 

2.以纳秒为单位

public static void main(String[] args) {
//get start time
long startTime = System.nanoTime();
//test the code
test code
//get the end time
long endTime = System.nanoTime();
System.out.println("take the time is: " + (endTime - startTime) + " ms")
}

 

END......

相关标签: java