本文共 3175 字,大约阅读时间需要 10 分钟。
JMH ?????? Java ??????????? Java ???????? Oracle ?????? JIT???????? JVM?Java ???????????????????????
?????????? JMH ?? StringBuilder.append() ???????????????????
????????? JMH ???????? Maven ????????????? JMH ????????????????
org.openjdk.jmh jmh-core 1.23 org.openjdk.jmh jmh-generator-annprocess 1.23
???????????? Java ? StringConnectTest?????????????????????????
public class StringConnectTest { @Param(value = {"10", "50", "100"}) private int length; @Benchmark public void testStringBuilderAdd(Blackhole blackhole) { StringBuilder sb = new StringBuilder(); for (int i = 0; i < length; i++) { sb.append(i); } blackhole.consume(sb.toString()); } @Benchmark public void testStringAdd(Blackhole blackhole) { String a = ""; for (int i = 0; i < length; i++) { a += i; } blackhole.consume(a); } public static void main(String[] args) throws RunnerException { Options opt = new OptionsBuilder() .include(StringConnectTest.class.getSimpleName()) .result("result.json") .resultFormat(ResultFormatType.JSON) .build(); new Runner(opt).run(); }} ? main ???????? OptionsBuilder ?????????????????????
public static void main(String[] args) throws RunnerException { Options opt = new OptionsBuilder() .include(StringConnectTest.class.getSimpleName()) .result("result.json") .resultFormat(ResultFormatType.JSON) .build(); new Runner(opt).run();} ?? Maven ???????????????????????
mvn clean install -Djmh_demo=true StringConnectTest
????????????? JSON ??????? result.json??????????????????????????????????????
??????????????? StringBuilder.append() ???? String ????????????????????
| ???? | ?? | ?? | ?? | ???? (ns/op) | ??? |
|---|---|---|---|---|---|
| testStringBuilderAdd | 100 | avgt | 5 | 819.329 | 0.00% |
| testStringAdd | 100 | avgt | 5 | 6490.062 | 0.00% |
???????????????? StringBuilder.append() ????????
JMH ??????????????????????????????????????????????
@Benchmark ??????????????@Param ????????????@State ????????????@Warmup ? @Measurement ??????????????????@Fork ???????????????????????? JMH ????????? Maven ??????????????? Maven ???????
org.apache.maven.plugins maven-shade-plugin 2.4.1 package shade jmh-demo org.openjdk.jmh.Main
??????????????????? JMH Visual Chart ???????????
??? JMH ???????????????????????
????????????????
???????????????? JMH ??????????????????????????
转载地址:http://vqpfk.baihongyu.com/