在 ArrayBlockingQueue 中,为什么要将最终成员字段复制到局部最终变量中?
2022-08-31 12:02:48
在 中,所有需要锁的方法在调用 之前将其复制到局部变量。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;
}
是否有任何理由将最终字段复制到局部最终变量?