在ArrayBlockingQueue实现中,为什么不直接访问全局变量?
public class ArrayBlockingQueue<E> extends AbstractQueue<E>
implements BlockingQueue<E>, java.io.Serializable {
/** The queued items */
final Object[] items;
/** Main lock guarding all access */
final ReentrantLock lock;
// ...
public ArrayBlockingQueue(int capacity, boolean fair) {
if (capacity <= 0)
throw new IllegalArgumentException();
this.items = new Object[capacity];
lock = new ReentrantLock(fair);
// ...
}
@Override
public E poll() {
final ReentrantLock lock = this.lock; // Why the global variable assigned to a local variable ?
lock.lock();
try {
return (count == 0) ? null : extract();
} finally {
lock.unlock();
}
}
}
在poll
方法中,全局ReentrantLock lock
变量被分配给局部变量并使用它的引用。为什么会这样?
答案 0 :(得分:0)
局部变量存储在堆栈中并且访问速度更快。