2つの文字列の空の比較、2つの方法のパフォーマンスの比較
1674 ワード
str.isEmpty()と「」をテストします.equals(str)の2つの判断の効率
比較回数9999999999
str.isEmpty()使用時間2735(2.7秒)
"".equals(str)使用時間10516(10秒)
差がこんなに大きい
実はソースコードを見てすぐに問題点を発見しました
比較回数9999999999
str.isEmpty()使用時間2735(2.7秒)
"".equals(str)使用時間10516(10秒)
差がこんなに大きい
public class Test4
{
public static void main(String[] args)
{
long times = 999999999;
String str = "";
long a1 = System.currentTimeMillis();
for (long i = 0; i < times && str.isEmpty(); i++)
{
// System.out.println(str.isEmpty());
}
long a2 = System.currentTimeMillis();
System.out.println("str.isEmpty() times: " + (a2 - a1));
long b1 = System.currentTimeMillis();
for (long i = 0; i < times && "".equals(str); i++)
{
// System.out.println("".equals(str));
}
long b2 = System.currentTimeMillis();
System.out.println("\"\".equals(str) times: " + (b2 - b1));
}
}
出力結果:str.isEmpty() times: 2735
"".equals(str) times: 10516
実はソースコードを見てすぐに問題点を発見しました
public boolean isEmpty() {
return count == 0;
}
public boolean equals(Object anObject) {
if (this == anObject) {
return true;
}
if (anObject instanceof String) {
String anotherString = (String)anObject;
int n = count;
if (n == anotherString.count) {
char v1[] = value;
char v2[] = anotherString.value;
int i = offset;
int j = anotherString.offset;
while (n-- != 0) {
if (v1[i++] != v2[j++])
return false;
}
return true;
}
}
return false;
}