为什么字符串串联比 String.valueOf 更快地将整数转换为字符串?
2022-09-02 04:38:00
我有一个基准:
@BenchmarkMode(Mode.Throughput)
@Fork(1)
@State(Scope.Thread)
@Warmup(iterations = 10, time = 1, timeUnit = TimeUnit.SECONDS, batchSize = 1000)
@Measurement(iterations = 40, time = 1, timeUnit = TimeUnit.SECONDS, batchSize = 1000)
public class StringConcatTest {
private int aInt;
@Setup
public void prepare() {
aInt = 100;
}
@Benchmark
public String emptyStringInt() {
return "" + aInt;
}
@Benchmark
public String valueOfInt() {
return String.valueOf(aInt);
}
}
这是结果:
Benchmark Mode Cnt Score Error Units
StringConcatTest.emptyStringInt thrpt 40 66045.741 ± 1306.280 ops/s
StringConcatTest.valueOfInt thrpt 40 43947.708 ± 1140.078 ops/s
它表明,将空字符串与整数连接起来比调用 String.value(100) 快 30%。我知道“”+ 100转换为
new StringBuilder().append(100).toString()
并应用优化,使其快速。我不明白的是,为什么它本身比串联慢。有人可以解释到底发生了什么,以及为什么“”+ 100更快。魔法能产生什么?-XX:+OptimizeStringConcat
valueOf
OptimizeStringConcat