我之前做了一些性能测试,无法解释我得到的结果。
在运行下面的测试时,如果我取消注释private final List<String> list = new ArrayList<String>();
,性能会显着提高。在我的机器上,当该字段存在时,测试在 70-90 毫秒内运行,而当它被注释掉时,测试运行时间为 650 毫秒。
我还注意到,如果我将 print 语句更改为System.out.println((end - start) / 1000000);
,没有变量的测试将在 450-500 毫秒而不是 650 毫秒内运行。当变量存在时,它不起作用。
我的问题:
- 考虑到我什至不使用该变量,任何人都可以解释有或没有变量的几乎 10 的因子吗?
- 该打印语句如何改变性能(特别是因为它出现在性能测量窗口之后)?
ps:顺序运行时,3个场景(有变量,无变量,不同的打印语句)都需要260ms左右。
public class SOTest {
private static final int ITERATIONS = 10000000;
private static final int THREADS = 4;
private volatile long id = 0L;
//private final List<String> list = new ArrayList<String>();
public static void main(String[] args) throws Exception {
ExecutorService executor = Executors.newFixedThreadPool(THREADS);
final List<SOTest> objects = new ArrayList<SOTest>();
for (int i = 0; i < THREADS; i++) {
objects.add(new SOTest());
}
//warm up
for (SOTest t : objects) {
getRunnable(t).run();
}
long start = System.nanoTime();
for (SOTest t : objects) {
executor.submit(getRunnable(t));
}
executor.shutdown();
executor.awaitTermination(10, TimeUnit.SECONDS);
long end = System.nanoTime();
System.out.println(objects.get(0).id + " " + (end - start) / 1000000);
}
public static Runnable getRunnable(final SOTest object) {
Runnable r = new Runnable() {
@Override
public void run() {
for (int i = 0; i < ITERATIONS; i++) {
object.id++;
}
}
};
return r;
}
}
编辑
请参见下面 3 种场景下 10 次运行的结果:
- 没有变量,使用简短的打印语句
- 没有变量,使用长打印语句(打印对象之一)
- 顺序运行(1 个线程)
- 与变量
1 657 473 261 74
2 641 501 261 78
3 651 465 259 86
4 585 462 259 78
5 639 506 259 68
6 659 477 258 72
7 653 479 259 82
8 645 486 259 72
9 650 457 259 78
10 639 487 272 79