摘要: ```java public class SimulateHighConcurrency { public static void run(int num, Consumer action) { Objects.requireNonNull(action); CountDownLatch countDownLatch = new CountDownLatch(1); for (int i = 0; 阅读全文
posted @ 2020-01-17 08:53 骨头 阅读(191) 评论(0) 推荐(0) 编辑