标签:
用new创建类的实例时,构造雨数链中所有构造函数都会被自动调用,操作速度较慢。在某些时候可复用现有对象。比如在进行大量String操作时,可用StringBuffer娄代替String类,以避免生成大量的对象。
如果一个对象实现Cloneable接口,就可以调用它的clone()方法。clone()方法不会调用任何类构造函数,比使用new方法创建实例速度要快。
调用方法时传递的参数及调用中创建的临时变量保存在栈(Stack)中,速度较快。其他变量,如静态变量、实例变量都在堆(Heap)中创建,速度较慢。访问静态变量和实例变量将会比访问局部变量多耗费 2-3 个时钟周期。如果一个变量需要经常访问,那么你就需要考虑这个变量的作用域了。static? local? 还是实例变量?
例子:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
public class usv { void getsum ( int [] values) { for ( int i= 0 ; i < value.length; i++) { _sum += value[i]; // violation. } } void getsum2 ( int [] values) { for ( int i= 0 ; i < value.length; i++) { _staticsum += value[i]; } } private int _sum; private static int _staticsum; } |
更正:如果可能,请使用局部变量作为你经常访问的变量。 你可以按下面的方法来修改 getsum()方法:
1
2
3
4
5
6
|
void getsum ( int [] values) { int sum = _sum; // temporary local variable. for ( int i= 0 ; i < value.length; i++) { sum += value[i]; } _sum = sum; }
|
面向对象设计的一个基本准则是通过方法间接访问对象的属性,但方法调用会占用·些开销访问。可以避免在同一个类中通过调用函数或方法(get或set)来设置或调用该对象的实例变量,这比直接访问变量要慢。为了减少方法调用,可以将方法中的代码复制到调用方法的地方,比如大量的循环中,这样可以节省方法调用的开销。但带来性能提升的同时会牺牲代码的可读性,可根据实际需要平衡两者关系。
带有final修饰符的类是不可派生的。如果指定一个类为final,则该类所有的方法都是final。JAVA编障器会寻找机会内联(inIine)所有的final方法。此举能够提升程序性能。使用final、static、private的方法是不能被覆盖的,JAVA不需要在稃序运行的时候动态关联实现方法,从而节省了运行时间。
简单的 getter/setter 方法应该被置成 final,这会告诉编译器,这个方法不会被重载,所以,可以变成”inlined”
例子:
1
2
3
4
5
6
|
class maf { public void setsize ( int size) { _size = size; } private int _size; } |
更正:
1
2
3
4
5
6
|
class daf_fixed { final public void setsize ( int size) { _size = size; } private int _size; } |
如果左边的对象的静态类型等于右边的,instanceof 表达式返回永远为 true。
例子:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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 操作。
1
2
3
4
5
6
7
|
class dog extends uiso { void method () { dog d; system.out.println ( "dog is an uiso" ); system.out.println ( "uiso is an uiso" ); } } |
所有的类都是直接或者间接继承自 object。同样,所有的子类也都隐含的“等于”其父类。那么,由子类造型至父类的操作就是不必要的了。
例子:
1
2
3
4
5
6
7
8
9
10
|
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. } } |
更正:
1
2
3
4
5
6
7
|
class dog extends unc { void method () { dog dog = new dog(); unc animal = dog; object o = dog; } } |
I/O性能常常是应用程序性能瓶颈,优化I/O性能就显得极为系要。在进行I/0操作时,匿遵循以下原则:尽可能少的访问磁盘;尽可能少的I方问底层的操作系统;琳可能少的方法调用;尽r叮能少处理个别的处理字节和字符。基于以上原则,可以通过以下技巧提高I/O速度:
常用的实现方法有以下2种:使用用于字符的BufferedReader和用于宁节的BufferedlnputStream类,或者使用块读取方法次读取一大块数据。
当使用Unicode字符串时,Write类的开销比较大。因为它要实Uoicode到字节(byte)的转换。凶此,如果可能的话,在使_}}j Write类之前就实现转换或用OutputStream类代替Writer娄来使用。
1个char用2个字节保存字符,而byte只需要1个,因此用byte保存字符消耗的内存和需要执行的机器指令更少。更重要的是,用byte避免了进行Unicode转换。因此,如果可能的话,应尽量使用byte替代char。
对于字符I/O,虽然缓冲流避免了每次读取字符时的系统调用开销,但仍需要一次或多次方法调用。带缓冲的块I/O比缓冲流I/O快2到4倍,比无缓冲的I/O快4到40倍。
当序列化一个类或对象时,对干那些原子类型(atomic)或可以重建的元素,要标识为transient类型,这样就不用每一次都进行序列化。如果这砦序列化的对象要在网络上传输,这一小小的改变对性能会有很大的提高。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
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) { } } } |
JAVA语言中提供了try/catch来开发方便用户捕捉异常,进行异常的处理。但是如果使用不当,也会给Java程序的性能带来影响。因此,要注意以下儿点。慎用异常,异常对性能不利。抛出异常首先要创建一个新的对象。Throwable接口的构造函数调用名为fillInStackTrace()的本地(Native)方法filllnStackTrace()方法检查堆栈,收集调用跟踪信息。只要有异常被抛出,VM就必须调整调用堆栈。
如果可以用if、while等逻辑语句来处理,那么就尽可能的不用try/catch语句
在必须要进行异常的处理时,要尽可能的重用已经存在的异常对象。因为在异常的处理中,生成个异常对象要消耗掉大部分的时间。
把 try/catch块放入循环体内,会极大的影响性能,如果编译 jit 被关闭或者你所使用的是一个不带 jit 的jvm,性能会将下降 21%之多!
例子:
1
2
3
4
5
6
7
8
9
10
11
|
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块移出循环
1
2
3
4
5
6
|
void method (fileinputstream fis) { try { for ( int i = 0 ; i < size; i++) { _sum += fis.read(); } } catch (exception e) {} } |
生成和启动新线程是个相对较慢的过程,生成大量新线程会严重影响程序性能。通过使用线程池,由线程池管理器(thread pool manager)来生成新线程或分配现有线程,节省生成线程的时间。
不必要的同步常常会造成程序性能的下降,调用同步方法比调用非同步方法要花费更多的时间。如果程序是单线程,则没有必要使用同步。
对某个方法或函数进行同步比对整个代码段进行同步的性能要好。
Vector和Hashtable实现了同步以提高线程安全性,但速度较没有实现同步的ArrayList和Ha shMap要慢,可以根据需要选择使用的类。
使用哪个方法要取决于程序的没计,但应尽可能使用notify(),因为notify()只唤醒等待指定对象的线程,比唤醒所有等待线稃的notifyAll0速度更快。
方法的同步需要消耗相当大的资料,在一个循环中调用它绝对不是一个好主意。
例子:
1
2
3
4
5
6
7
8
9
10
11
|
import java.util.vector; 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 ); } |
更正:不要在循环体中调用同步方法,如果必须同步的话,推荐以下方式:
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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 ); } |
1
2
3
4
5
6
7
8
9
10
11
|
public class sdiv { public static final int num = 16 ; public void calculate( int a) { int div = a / 4 ; // should be replaced with "a >> 2". int div2 = a / 8 ; // should be replaced with "a >> 3". int temp = a / 3 ; int mul = a * 4 ; // should be replaced with "a << 2". int mul2 = 8 * a; // should be replaced with "a << 3". int temp2 = a * 3 ; } } |
1
2
3
4
5
6
7
8
9
10
11
|
public class sdiv { public static final int num = 16 ; public void calculate( int a) { int div = a >> 2 ; int div2 = a >> 3 ; int temp = a / 3 ; // 不能转换成位移操作 int mul = a << 2 ; int mul2 = a << 3 ; int temp = a * 3 ; // 不能转换 } } |
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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 } } } |
1
2
3
4
5
6
7
8
9
10
11
|
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 ); } } |
a=a+b和a+=b在编译时会产生不同JAVA字节码,后者回快于前者。因此,使用+=、-=、*=、/=等复台赋值运算符会使运算速度稍有提升。
对int类型的操作通常比其它基本类型要快,因此尽量使用int类型。
这类连接往往会耗费大量时间,应尽量避免。可以使用连接池技术,复用现有连接。
用一个Jar文件发送多个文件还叫以避免每个文件打开和关闭网络连接所造成的开销。
可以利用Statement类的addBatch()或executeBatch法成批地提交sql语句,以节省网络传输开销。在执行大量相似语句时,可以使用PreParedStatement—类,它可以一次性编译语句并多次执行,用参数最后执行的sql语句。
这似乎是每个程序员都知道的基本原则,没有必出,但很多人往往忽略一些细节。如下列代码:
1
2
3
4
|
Vector aVector= ...; for ( int i= 0 ;i<aVector size();i++)( System out println(aVector.elementAt(i).toStringO); } |
这段代码中没循环一次就要调用aVector.size()方法,aVector的长度不变的话,可以改为一下代码:
1
2
3
4
5
|
Vector aVector= ...: int length=aVector size(); for ( int i= 0 ;i<length;i++)f System out println(aVector.elememAt(i).toStringO); ) |
这样消除了每次调用aVector.size()方法的开销。
1
2
3
4
5
6
7
8
9
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. } |
1
2
|
public vector v = new vector( 20 ); public hashtable hash = new hashtable( 10 ); |
1
2
3
4
5
6
7
|
public class pcts { private void method(string s) { if (s.startswith( "a" )) { // violation // ... } } } |
1
2
3
4
5
6
7
|
public class pcts { private void method(string s) { if ( ‘a‘ == s.charat( 0 )) { // ... } } } |
1
2
3
4
5
6
|
public class str { public void method(string s) { string string = s + "d" // violation. string = "abc" + "d" // violation. } } |
1
2
3
4
5
6
|
public class str { public void method(string s) { string string = s + ‘d‘ string = "abc" + ‘d‘ } } |
1
2
3
4
5
|
public class ueq { boolean method (string string) { return string.endswith ( "a" ) == true ; // violation } } |
1
2
3
4
5
|
class ueq_fixed { boolean method (string string) { return string.endswith ( "a" ); } } |
1
2
3
4
5
6
7
|
public class usc { S tring method () { S tringbuffer s = new StringBuffer ( "hello" ); S tring t = s + "world!" ; return t; } } |
1
2
3
4
5
6
7
8
|
public class ust { void parsestring(string string) { int index = 0 ; while ((index = string.indexof( "." , index)) != - 1 ) { system.out.println (string.substring(index, string.length())); } } } |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
public class if { public int method( boolean isdone) { if (isdone) { return 0 ; } else { return 10 ; } void method2( boolean istrue) { if (istrue) { _value = 0 ; } else { _value = 1 ; <span style= "white-space:pre;" > </span>} } } |
1
2
3
4
5
6
7
8
9
10
|
public class if { public int method( boolean isdone) { return (isdone ? 0 : 10 ); } void method( boolean istrue) { <span style= "white-space:pre;" > </span>_value = (istrue ? 0 : 1 ); // comp<span style="white-space:pre;"> </span>} private int _value = 0 ; } |
1
2
3
4
5
6
7
8
9
|
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); } } } |
1
2
3
4
5
6
7
8
9
|
import java.util.vector; public class loop { void method (vector v) { object o; for ( int i= 0 ;i<v.size();i++) { o = v.elementat(i); } } } |
1
2
3
4
5
6
|
public class rsbc { void method () { stringbuffer buffer = new stringbuffer(); // violation buffer.append ( "hello" ); } } |
1
2
3
4
5
6
7
|
public class rsbc { void method () { stringbuffer buffer = new stringbuffer(max); buffer.append ( "hello" ); } private final int max = 100 ; } |
1
2
3
4
5
6
7
8
|
public class dun { boolean method ( boolean a, boolean b) { if (!a) return !a; else return !b; } } |
1
2
3
4
5
6
7
8
9
|
public class insof { private void method (object o) { if (o instanceof interfacebase) { } // better if (o instanceof classbase) { } // worse. } } class classbase {} interface interfacebase {} |
标签:
原文地址:http://www.cnblogs.com/barrywxx/p/4399339.html