
获得徽章 8
- 以前只在网上见到过字节工牌的梗,从公司戴到机场,饭店,小区,各种场所。
今天在小区电梯见识到活人了,总之就是觉得很有趣,很快乐。
我这种裤兜带个钥匙都嫌弃扎腿的人,要是去了字节,没准游泳的时候也戴着了。33 - 看到AQS源码时候,入队采用CAS入队,但CAS操作是在tail节点的设置,那么入队设置指向是如何保证线程安全的呢?
private Node enq(final Node node) {
for (;;) {// set tail and add element to FIFO queue.Hot to ensure concurrent safety
Node t = tail;
if (t == null) { // Must initialize
if (compareAndSetHead(new Node()))//
tail = head;
} else {
node.prev = t;
if (compareAndSetTail(t, node)) {
t.next = node;
return t;
}
}
}
}展开51