摘要: 一、概述 二、为什么用,有什么好处 三、BlockingQueue的核心方法 四、SynchronousQueue队列 理论 实操 public class SynchronousQueueDemo { public static void main(String[] args) { Blockin 阅读全文
posted @ 2021-06-30 16:06 卡卡罗特琪琪 阅读(82) 评论(0) 推荐(0) 编辑
摘要: public class SemaphoreDemo { public static void main(String[] args) { //模拟3个停车位 Semaphore semaphore = new Semaphore(3); //模拟6部汽车 for (int i = 1; i <= 阅读全文
posted @ 2021-06-30 11:09 卡卡罗特琪琪 阅读(65) 评论(0) 推荐(0) 编辑
摘要: /** * 枚举类型的特点 * 1、枚举类型有一个公共的基本的父类,是 java.lang.Enum 类型,所以不能再继承别的类型 * 2、枚举类型的构造器必须是私有的 * 3、枚举类型可以实现接口 * * @author kakaluote * @date 2021年6月30日 上午9:07:41 阅读全文
posted @ 2021-06-30 09:27 卡卡罗特琪琪 阅读(46) 评论(0) 推荐(0) 编辑