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

避免自动装箱

时间:2017-11-08 14:53:06      阅读:121      评论:0      收藏:0      [点我收藏+]

标签:sys   自动装箱   color   sum   max   generated   基本   static   优先   

public class Person {

  public static void main(String[] args) {
    // TODO Auto-generated method stub

    //较差
    Date start = new Date();
    Long sum = 0L;
    for(int i = 0,max = 1000000; i < max; i++) {
      sum += 5;
    }
    Date end = new Date();
    
    System.out.println("用时: " + (end.getTime() - start.getTime()));
    
    //较好
    start = new Date();
    long sum1 = 0L;
    for(int i = 0,max = 1000000; i < max; i++) {
      sum1 += 5;
    }
    end = new Date();

    System.out.println("用时: " + (end.getTime() - start.getTime()));
    
  }

}

 

输出结果:

用时: 18
用时: 2

 

要优先使用基本类型而不是装箱基本类型,要当心无意识的自动装箱

 

避免自动装箱

标签:sys   自动装箱   color   sum   max   generated   基本   static   优先   

原文地址:http://www.cnblogs.com/mzxl1987/p/7803611.html

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