在中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;
}
有什么理由将最终字段复制到本地最终变量?