码迷,mamicode.com
首页 > 其他好文 > 详细

验证for循环打印数字1-9999所需要使用的时间(毫秒)

时间:2020-05-23 20:08:09      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:main   lint   UNC   inter   end   for   mem   star   package   

 1 package com.yhqtv.demo01.FunctionalInterface;
 2 
 3 
 4 /*
 5  * @author  XMKJ  yhqtv.com Email:yhqtv@qq.com
 6  * @create 2020-05-23-14:33
 7  *
 8  */
 9 public class Test01 {
10     public static void main(String[] args)  {
11 
12         long start = System.currentTimeMillis();
13         for (int i = 1; i < 10000; i++) {
14             System.out.println(i);
15         }
16         long end = System.currentTimeMillis();
17 
18         System.out.println("打印1-9999需要"+(end-start)+"毫秒");
19 
20     }
21 }

 

验证for循环打印数字1-9999所需要使用的时间(毫秒)

标签:main   lint   UNC   inter   end   for   mem   star   package   

原文地址:https://www.cnblogs.com/yhqtv-com/p/12943948.html

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