标签: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