Java性能优化技巧整理

一、避免在循环条件中使用复杂表达式
在不做编译优化的情况下,在循环中,循环条件会被反复计算,如果不使用复杂表达式,而使循
环条件值不变的话,程序将会运行的更快。

例子:

import java.util.vector;

class cel {

void method (vector vector) {

for (int i = 0; i < vector.size (); i++) // violation

; // ...

}

}

更正:

class cel_fixed {

void method (vector vector) {

int size = vector.size ()

for (int i = 0; i < size; i++)

; // ...

}

}
View Code

二、为'vectors' 和 'hashtables'定义初始大小

jvm 为 vector 扩充大小的时候需要重新创建一个更大的数组,将原原先数组中的内容复制过
来,最后,原先的数组再被回收。可见 vector 容量的扩大是一个颇费时间的事。
通常,默认的 10 个元素大小是不够的。你最好能准确的估计你所需要的最佳大小。

例子:

import java.util.vector;

public class dic {

public void addobjects (object[] o) {

// if length > 10, vector needs to expand

for (int i = 0; i< o.length;i++) { 

v.add(o); // capacity before it can add more elements.

}

}

public vector v = new vector(); // no initialcapacity.

}

更正: 

自己设定初始大小。

public vector v = new vector(20); 

public hashtable hash = new hashtable(10);
View Code

三、在 finally 块中关闭 stream
程序中使用到的资源应当被释放,以避免资源泄漏。这最好在 finally 块中去做。不管程序执行
的结果如何,finally 块总是会执行的,以确保资源的正确关闭。

例子:

import java.io.*;

public class cs {

public static void main (string args[]) {

cs cs = new cs ();

cs.method ();

}

public void method () {

try {

fileinputstream fis = new fileinputstream ("cs.java");

int count = 0;

while (fis.read () != -1)

count++;

system.out.println (count);

fis.close ();

} catch (filenotfoundexception e1) {

} catch (ioexception e2) {

}

}

}

更正: 

在最后一个 catch 后添加一个 finally

四、使用'system.arraycopy ()'代替通过来循环复制数组

'system.arraycopy ()' 要比通过循环来复制数组快的多。

例子:

public class irb

{

void method () {

int[] array1 = new int [100];

for (int i = 0; i < array1.length; i++) {

array1 [i] = i;

}

int[] array2 = new int [100];

for (int i = 0; i < array2.length; i++) {

array2 [i] = array1 [i]; // violation

}

}

}

更正:

public class irb 

{

void method () {

int[] array1 = new int [100];

for (int i = 0; i < array1.length; i++) {

array1 [i] = i;

}

int[] array2 = new int [100];

system.arraycopy(array1, 0, array2, 0, 100);

}

}

五、让访问实例内变量的 getter/setter 方法变成”final”
简单的 getter/setter 方法应该被置成 final,这会告诉编译器,这个方法不会被重载,所以,可
以变成”inlined”

例子:

class maf {

public void setsize (int size) {

_size = size;

}

private int _size;

}

更正:

class daf_fixed {

final public void setsize (int size) {

_size = size;

}

private int _size;

}

六、避免不需要的 instanceof 操作
如果左边的对象的静态类型等于右边的,instanceof 表达式返回永远为 true。

例子:        

public class uiso {

public uiso () {}

}

class dog extends uiso {

void method (dog dog, uiso u) {

dog d = dog; 

if (d instanceof uiso) // always true.

system.out.println("dog is a uiso");

uiso uiso = u;

if (uiso instanceof object) // always true.

system.out.println("uiso is an object");

}

}

更正:         

删掉不需要的 instanceof 操作。

class dog extends uiso {

void method () {

dog d;

system.out.println ("dog is an uiso");

system.out.println ("uiso is an uiso");

}

}

七、避免不需要的造型操作
所有的类都是直接或者间接继承自 object。同样,所有的子类也都隐含的“等于”其父类。那么,
由子类造型至父类的操作就是不必要的了。

例子:

class unc {

string _id = "unc";

}

class dog extends unc {

void method () {

dog dog = new dog ();

unc animal = (unc)dog; // not necessary.

object o = (object)dog; // not necessary.

}

}

更正:        

class dog extends unc {

void method () {

dog dog = new dog();

unc animal = dog;

object o = dog;

}

}

 

十一、在字符串相加的时候,使用 ' ' 代替 " ",如果该字符串只
有一个字符的话

public class str {

public void method(string s) {

string string = s + "d" // violation.

string = "abc" + "d" // violation.

}

}

将一个字符的字符串替换成' ' 

public class str {

public void method(string s) {

string string = s + 'd'

string = "abc" + 'd' 

}

}

 

十二、不要在循环中调用 synchronized(同步)方法
方法的同步需要消耗相当大的资料,在一个循环中调用它绝对不是一个好主意。

public class syn {

public synchronized void method (object o) {

}

private void test () {

for (int i = 0; i < vector.size(); i++) {

method (vector.elementat(i)); // violation

}

}

private vector vector = new vector (5, 5);

}

更正: 

不要在循环体中调用同步方法,如果必须同步的话,推荐以下方式:

import java.util.vector;

public class syn {

public void method (object o) {

}

private void test () {

synchronized{//在一个同步块中执行非同步方法

for (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; 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) {}

}
View Code

十四、对于 boolean 值,避免不必要的等式判断
将一个 boolean 值与一个 true 比较是一个恒等操作(直接返回该 boolean 变量的值). 移走对于
boolean 的不必要操作至少会带来 2 个好处:
1)代码执行的更快 (生成的字节码少了 5 个字节);
2)代码也会更加干净 。

十五、对于常量字符串,用'string' 代替 'stringbuffer'
常量字符串并不需要动态改变长度。

例子:

public class usc {

string method () {

stringbuffer s = new stringbuffer ("hello");

string t = s + "world!";

return t;

}

}

更正: 

把 stringbuffer 换成 string,如果确定这个 string 不会再变的话,这将会减少运行开销提高性

十六、用'stringtokenizer' 代替 'indexof()' 和'substring()'
字符串的分析在很多应用中都是常见的。使用 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()));

}

}

}
View Code

 

你可能感兴趣的:(java性能优化)