我正在研究java.util.concurrent.locks.AbstractQueuedSynchronizer
源代码。
从多个地方调用compareAndSetState
方法。
/**
* Atomically sets synchronization state to the given updated
* value if the current state value equals the expected value.
* This operation has memory semantics of a {@code volatile} read
* and write.
*
* @param expect the expected value
* @param update the new value
* @return {@code true} if successful. False return indicates that the actual
* value was not equal to the expected value.
*/
protected final boolean compareAndSetState(int expect, int update) {
// See below for intrinsics setup to support this
return unsafe.compareAndSwapInt(this, stateOffset, expect, update);
}
参数 expect
和update
是显而易见的,并且对应于原子参数。但是this
是对象(而不是int
)。
这与期望相比如何?