CountDownLatch // CyclicBarrier

CountDownLatch 是計數器, 線程完成一個就記一個, 就像 報數一樣, 只不過是遞減的。當減到0就會放行 相當於遊戲的加載,只有所有玩家都加載完成,遊戲才能進入 其中玩家相當於 分線程 , 整個遊戲爲main 線程 import java.util.Random; import java.util.concurrent.CountDownLatch; /** * */ /**
相關文章
相關標籤/搜索