Java多線程--自旋鎖

自旋鎖,是指不會阻塞當前線程,而是採用循環的方式去獲取鎖,這樣的話減小上下文切換,可是同時會消耗CPU資源。java //---------------------------自旋鎖----------------------- private static AtomicReference<Thread> atomicReference=new AtomicReference<>(null
相關文章
相關標籤/搜索