摘要:
Consumer 消费型接口 package com.cedric.JUC.function; import java.util.function.Consumer; /** * Consumer 消费型接口:只有输入,没有返回值 */ public class Demo03 { public st 阅读全文
摘要:
##常用的辅助类 ##CountDownLatch package com.cedric.JUC.add; import java.util.concurrent.CountDownLatch; // 计数器 public class CountDownLatchTest { public stat 阅读全文