에서 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;
}
최종 필드를 지역 최종 변수에 복사하는 이유가 있습니까?