在ArrayBlockingQueue
中,需要锁定的所有方法在调用final
之前将其复制到本地lock()
变量。
public boolean offer(E e) {
if (e == null) throw new NullPointerException();
final ReentrantLock lock = this.lock;
lock.lock();
try {
if (count == items.length)
return false;
else {
insert(e);
return true;
}
} finally {
lock.unlock();
}
}
当字段this.lock
为lock
时,是否有理由将this.lock
复制到本地变量final
?
此外,它还会在使用E[]
之前使用本地副本:
private E extract() {
final E[] items = this.items;
E x = items[takeIndex];
items[takeIndex] = null;
takeIndex = inc(takeIndex);
--count;
notFull.signal();
return x;
}
有没有理由将最终字段复制到本地最终变量?
答案 0 :(得分:62)
这是一个极端的优化,该课程的作者Doug Lea喜欢使用。这是关于这个确切主题的core-libs-dev邮件列表上a recent thread的帖子,它可以很好地回答你的问题。
来自帖子:
...复制到本地生产最小的 字节码,对于低级代码,编写代码很好 那距离机器更近了
答案 1 :(得分:11)
This thread给出了一些答案。实质上: