Java程序性能优化(23条)

上传人:宝路 文档编号:22273122 上传时间:2017-11-26 格式:DOC 页数:14 大小:82.03KB
返回 下载 相关 举报
Java程序性能优化(23条)_第1页
第1页 / 共14页
Java程序性能优化(23条)_第2页
第2页 / 共14页
Java程序性能优化(23条)_第3页
第3页 / 共14页
Java程序性能优化(23条)_第4页
第4页 / 共14页
Java程序性能优化(23条)_第5页
第5页 / 共14页
点击查看更多>>
资源描述

《Java程序性能优化(23条)》由会员分享,可在线阅读,更多相关《Java程序性能优化(23条)(14页珍藏版)》请在金锄头文库上搜索。

1、Java 程序性能优化一、避免在循环条件中使用复杂表达式 在不做编译优化的情况下,在循环中,循环条件会被反复计算,如果不使用复杂表达式,而使循环条件值不变的话,程序将会运行的更快。例子:import java.util.Vector;class CEL void method (Vector vector) for (int i = 0; i 10, Vector needs to expand for (int i = 0; i 2.int div2 = a / 8; / should be replaced with a 3.int temp = a / 3;更正:public class

2、 SDIV public static final int NUM = 16;public void calculate(int a) int div = a 2; int div2 = a 3; int temp = a / 3; / 不能转换成位移操作十、使用移位操作代替a * b 同上。i但我个人认为,除非是在一个非常大的循环内,性能非常重要,而且你很清楚你自己在做什么,方可使用这种方法。否则提高性能所带来的程序晚读性的降低将是不合算的。例子:public class SMUL public void calculate(int a) int mul = a * 4; / should

3、be replaced with a 2.int mul2 = 8 * a; / should be replaced with a 3.int temp = a * 3;更正:package OPT;public class SMUL public void calculate(int a) int mul = a 2; int mul2 = a 3; int temp = a * 3; / 不能转换十一、在字符串相加的时候,使用 代替 ,如果该字符串只有一个字符的话 例子:public class STR public void method(String s) String string

4、 = s + d / violation.string = abc + d / violation.更正:将一个字符的字符串替换成 public class STR public void method(String s) String string = s + dstring = abc + d 十二、不要在循环中调用 synchronized(同步)方法 方法的同步需要消耗相当大的资料,在一个循环中调用它绝对不是一个好主意。例子:import java.util.Vector;public class SYN public synchronized void method (Object

5、o) private void test () for (int i = 0; i vector.size(); i+) method (vector.elementAt(i); / violationprivate Vector vector = new Vector (5, 5);更正:不要在循环体中调用同步方法,如果必须同步的话,推荐以下方式:import java.util.Vector;public class SYN public void method (Object o) private void test () synchronized/在一个同步块中执行非同步方法for (

6、int i = 0; i vector.size(); i+) method (vector.elementAt(i); private Vector vector = new Vector (5, 5);十三、将 try/catch 块移出循环把 try/catch 块放入循环体内,会极大的影响性能,如果编译 JIT 被关闭或者你所使用的是一个不带 JIT 的 JVM,性能会将下降 21%之多!例子: import java.io.FileInputStream;public class TRY void method (FileInputStream fis) for (int i = 0

7、; i size; i+) try / violation_sum += fis.read(); catch (Exception e) private int _sum;更正: 将 try/catch 块移出循环 void method (FileInputStream fis) try for (int i = 0; i size; i+) _sum += fis.read(); catch (Exception e) 参考资料:Peter Haggar: Practical Java - Programming Language Guide.Addison Wesley, 2000, p

8、p.81 83十四、对于 boolean 值,避免不必要的等式判断将一个 boolean 值与一个 true 比较是一个恒等操作( 直接返回该 boolean 变量的值). 移走对于 boolean 的不必要操作至少会带来 2 个好处:1)代码执行的更快 (生成的字节码少了 5 个字节);2)代码也会更加干净 。例子:public class UEQboolean method (String string) return string.endsWith (a) = true; / Violation更正:class UEQ_fixedboolean method (String string

9、) return string.endsWith (a); 十五、对于常量字符串,用String 代替 StringBuffer 常量字符串并不需要动态改变长度。例子:public class USC String method () StringBuffer s = new StringBuffer (Hello);String t = s + World!;return t;更正:把 StringBuffer 换成 String,如果确定这个 String 不会再变的话,这将会减少运行开销提高性能。十六、用StringTokenizer 代替 indexOf() 和substring()

10、字符串的分析在很多应用中都是常见的。使用 indexOf()和 substring()来分析字符串容易导致 StringIndexOutOfBoundsException。而使用 StringTokenizer 类来分析字符串则会容易一些,效率也会高一些。例子:public class UST void parseString(String string) int index = 0;while (index = string.indexOf(., index) != -1) System.out.println (string.substring(index, string.length()

11、;参考资料:Graig Larman, Rhett Guthrie: Java 2 Performance and Idiom GuidePrentice Hall PTR, ISBN: 0-13-014260-3 pp. 282 283十七、使用条件操作符替代if (cond) return; else return; 结构条件操作符更加的简捷例子:public class IF public int method(boolean isDone) if (isDone) return 0; else return 10;更正:public class IF public int method

12、(boolean isDone) return (isDone ? 0 : 10);十八、使用条件操作符代替if (cond) a = b; else a = c; 结构例子:public class IFAS void method(boolean isTrue) if (isTrue) _value = 0; else _value = 1;private int _value = 0;更正:public class IFAS void method(boolean isTrue) _value = (isTrue ? 0 : 1); / compact expression.privat

13、e int _value = 0;十九、不要在循环体中实例化变量在循环体中实例化临时变量将会增加内存消耗例子: import java.util.Vector;public class LOOP void method (Vector v) for (int i=0;i v.size();i+) Object o = new Object();o = v.elementAt(i);更正: 在循环体外定义变量,并反复使用 import java.util.Vector;public class LOOP void method (Vector v) Object o;for (int i=0;i

14、v.size();i+) o = v.elementAt(i);二十、确定 StringBuffer 的容量StringBuffer 的构造器会创建一个默认大小(通常是 16)的字符数组。在使用中,如果超出这个大小,就会重新分配内存,创建一个更大的数组,并将原先的数组复制过来,再丢弃旧的数组。在大多数情况下,你可以在创建 StringBuffer 的时候指定大小,这样就避免了在容量不够的时候自动增长,以提高性能。例子: public class RSBC void method () StringBuffer buffer = new StringBuffer(); / violationbu

15、ffer.append (hello);更正: 为 StringBuffer 提供寝大小。 public class RSBC void method () StringBuffer buffer = new StringBuffer(MAX);buffer.append (hello);private final int MAX = 100;参考资料:Dov Bulka, Java Performance and Scalability Volume 1: Server-Side Programming Techniques Addison Wesley, ISBN: 0-201-70429-3 p.30 31二十一、尽可能

展开阅读全文
相关资源
相关搜索

当前位置:首页 > 办公文档 > 其它办公文档

电脑版 |金锄头文库版权所有
经营许可证:蜀ICP备13022795号 | 川公网安备 51140202000112号