最佳答案
在 ArrayBlockingQueue
中,所有需要锁的方法在调用 lock()
之前将其复制到本地 final
变量。
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
为 final
时,是否有理由将 this.lock
复制到局部变量 lock
?
此外,它还使用 E[]
的本地副本,然后再对其采取行动:
private E extract() {
final E[] items = this.items;
E x = items[takeIndex];
items[takeIndex] = null;
takeIndex = inc(takeIndex);
--count;
notFull.signal();
return x;
}
将 final 字段复制到局部 final 变量有什么理由吗?