代码在这里
public final void await() throws InterruptedException {
            if (Thread.interrupted())
                throw new InterruptedException();
            Node node = addConditionWaiter();
            long savedState = fullyRelease(node);
            int interruptMode = 0;
            while (!isOnSyncQueue(node)) {
                LockSupport.park(this);
                if ((interruptMode = checkInterruptWhileWaiting(node)) != 0)
                    break;
            }
            if (acquireQueued(node, savedState) && interruptMode != THROW_IE)
                interruptMode = REINTERRUPT;
            if (node.nextWaiter != null) // clean up if cancelled
                unlinkCancelledWaiters();
            if (interruptMode != 0)
                reportInterruptAfterWait(interruptMode);
        }```
        有人可以简单解释一下这里的代码都是什么意思吗?主要是希望先领进个门,稍微知道的多一点就可以自己去研究这些代码的原理了,谢谢dalao们了!
        我知道这里面大概的步骤应该是先释放当前锁,然后将当前线程加入到该条件变量关联的等待队列中,具体在哪里可以聊一下吗?