配列arraycopy、clone、および一般的なサイクル付与のパフォーマンス分析
1938 ワード
:
public class ArrayCopyPerformanceTest {
public static class Person {
public String name;
}
public static void main(String[] args) {
int arraySize = 1000;
int testTimes = 100000;
Person[] ps1 = genPersons(arraySize);
long t1 = System.currentTimeMillis();
Person[] ps2 = new Person[arraySize];
for (int i = 0; i < testTimes; i++) {
System.arraycopy(ps1, 0, ps2, 0, arraySize);
}
long t2 = System.currentTimeMillis();
System.out.println("time used by System.arraycopy: " + (t2 - t1) + "ms");
long t = System.currentTimeMillis();
Person[] ps = new Person[arraySize];
for (int i = 0; i < testTimes; i++) {
ps2 = ps1.clone();
}
long tt = System.currentTimeMillis();
System.out.println("time used by clone: " + (tt - t) + "ms");
t1 = System.currentTimeMillis();
ps2 = new Person[arraySize];
for (int i = 0; i < testTimes; i++) {
for (int j = 0; j < arraySize; j++) {
ps2[j] = ps1[j];
}
}
t2 = System.currentTimeMillis();
System.out.println("time used by manual loop: " + (t2 - t1) + "ms");
}
public static Person[] genPersons(int arraySize) {
Person[] ps = new Person[arraySize];
for (int i = 0; i < arraySize; i++) {
Person p = new Person();
p.name = "james" + i;
ps[i] = p;
}
return ps;
}
}
実行結果:
time used by System.arraycopy: 116ms time used by clone: 370ms time used by manual loop: 641ms
結果的に性能に大きな差があり,cloneは通常のサイクル付与よりも性能的に向上しているが,柔軟ではなく付与要素を指定することができず,java内蔵の集合タイプ,eg,ArrayList,内部のadd()とremove()メソッドの内部実装はarraycopyを用いている.したがって,総合的には,ロットデータの付与にarraycopyを推奨する.