码迷,mamicode.com
首页 > 编程语言 > 详细

【java】计算一段代码执行时长

时间:2017-04-07 19:39:25      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:rgs   style   closed   integer   分享   opened   blog   alt   div   

技术分享
1 public class Test_currentTimeMillis {
2     public static void main(String[] args) {
3         long start=System.currentTimeMillis();
4         for(int i=0;i<Integer.MAX_VALUE;i++){}
5         long end=System.currentTimeMillis();
6         System.out.println("for语句执行时长:"+(end-start)+"毫秒。");
7     }
8 }
View Code

运行结果:

for语句执行时长:3684毫秒。

【java】计算一段代码执行时长

标签:rgs   style   closed   integer   分享   opened   blog   alt   div   

原文地址:http://www.cnblogs.com/xiongjiawei/p/6679670.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!