parseInt
少なくとも例外処理が必要なため、パフォーマンス面などは他のソリューションよりもはるかに劣ります。
jmhテストを実行しましたが、文字列を使用して文字列を反復処理し、文字列charAt
と境界文字を比較することが、文字列に数字のみが含まれているかどうかをテストする最も速い方法であることがわかりました。
JMHテスト
テストでは、char値のチェックとCharacter.isDigit
vsのパフォーマンスを比較します。Pattern.matcher().matches
Long.parseLong
これらの方法では、ASCII以外の文字列と+/-記号を含む文字列で異なる結果が生成される可能性があります。
テストは、5回のウォームアップ反復と5回のテスト反復でスループットモード(大きいほど良い)で実行されます。
結果
これは、最初のテストロードの場合parseLong
よりもほぼ100倍遅いことに注意してください。isDigit
## Test load with 25% valid strings (75% strings contain non-digit symbols)
Benchmark Mode Cnt Score Error Units
testIsDigit thrpt 5 9.275 ± 2.348 ops/s
testPattern thrpt 5 2.135 ± 0.697 ops/s
testParseLong thrpt 5 0.166 ± 0.021 ops/s
## Test load with 50% valid strings (50% strings contain non-digit symbols)
Benchmark Mode Cnt Score Error Units
testCharBetween thrpt 5 16.773 ± 0.401 ops/s
testCharAtIsDigit thrpt 5 8.917 ± 0.767 ops/s
testCharArrayIsDigit thrpt 5 6.553 ± 0.425 ops/s
testPattern thrpt 5 1.287 ± 0.057 ops/s
testIntStreamCodes thrpt 5 0.966 ± 0.051 ops/s
testParseLong thrpt 5 0.174 ± 0.013 ops/s
testParseInt thrpt 5 0.078 ± 0.001 ops/s
テストスイート
@State(Scope.Benchmark)
public class StringIsNumberBenchmark {
private static final long CYCLES = 1_000_000L;
private static final String[] STRINGS = {"12345678901","98765432177","58745896328","35741596328", "123456789a1", "1a345678901", "1234567890 "};
private static final Pattern PATTERN = Pattern.compile("\\d+");
@Benchmark
public void testPattern() {
for (int i = 0; i < CYCLES; i++) {
for (String s : STRINGS) {
boolean b = false;
b = PATTERN.matcher(s).matches();
}
}
}
@Benchmark
public void testParseLong() {
for (int i = 0; i < CYCLES; i++) {
for (String s : STRINGS) {
boolean b = false;
try {
Long.parseLong(s);
b = true;
} catch (NumberFormatException e) {
// no-op
}
}
}
}
@Benchmark
public void testCharArrayIsDigit() {
for (int i = 0; i < CYCLES; i++) {
for (String s : STRINGS) {
boolean b = false;
for (char c : s.toCharArray()) {
b = Character.isDigit(c);
if (!b) {
break;
}
}
}
}
}
@Benchmark
public void testCharAtIsDigit() {
for (int i = 0; i < CYCLES; i++) {
for (String s : STRINGS) {
boolean b = false;
for (int j = 0; j < s.length(); j++) {
b = Character.isDigit(s.charAt(j));
if (!b) {
break;
}
}
}
}
}
@Benchmark
public void testIntStreamCodes() {
for (int i = 0; i < CYCLES; i++) {
for (String s : STRINGS) {
boolean b = false;
b = s.chars().allMatch(c -> c > 47 && c < 58);
}
}
}
@Benchmark
public void testCharBetween() {
for (int i = 0; i < CYCLES; i++) {
for (String s : STRINGS) {
boolean b = false;
for (int j = 0; j < s.length(); j++) {
char charr = s.charAt(j);
b = '0' <= charr && charr <= '9';
if (!b) {
break;
}
}
}
}
}
}
2018年2月23日に更新
- さらに2つのケースを追加します。1つ
charAt
は追加の配列を作成する代わりに使用し、もう1つIntStream
は文字コードを使用します。
- ループしたテストケースで数字以外が見つかった場合は、即時ブレークを追加します
- ループされたテストケースの空の文字列に対してfalseを返します
2018年2月23日に更新
- ストリームを使用せずにchar値を比較するテストケースをもう1つ追加します(最速です!)