摘要: ```java / Splits nodes in a tree bin into lower and upper tree bins, or untreeifies if now too small. Called only from resize; see above discussion ab 阅读全文
posted @ 2019-08-24 15:20 gsanye 阅读(251) 评论(0) 推荐(0) 编辑
摘要: AbstractQueuedSynchronize 抽象队列同步器 类: 简介: -提供了一个框架来实现阻塞锁和依赖先进先出(FIFO:first-in-first-out)等待对列的相关同步器(信号量、事件等) 此类被设计为对大多数依赖单原子 int 值来表示状态的同步器来说非常有用,子类必须定义 阅读全文
posted @ 2019-07-15 23:00 gsanye 阅读(265) 评论(0) 推荐(0) 编辑
摘要: AbstractOwnableSynchronize 抽象独占同步器 阅读全文
posted @ 2019-07-15 22:24 gsanye 阅读(239) 评论(0) 推荐(0) 编辑
摘要: ThreadPoolExecutor类 阅读全文
posted @ 2019-07-13 15:23 gsanye 阅读(269) 评论(0) 推荐(0) 编辑
摘要: AbstractExecutorService 抽象ExecutorService 任务模型分析: 定义任务:Runnable --》 Callable 转换:Executors.callable() 1.Runnable、run()一个无返回值的任务 2.Callable<T>、 T call() 阅读全文
posted @ 2019-07-13 11:42 gsanye 阅读(210) 评论(0) 推荐(0) 编辑
摘要: Future类是想解析: 阅读全文
posted @ 2019-07-10 22:59 gsanye 阅读(488) 评论(0) 推荐(0) 编辑
摘要: Executor接口 ExecutorService接口 Runnable接口 Future接口 阅读全文
posted @ 2019-07-09 23:03 gsanye 阅读(311) 评论(0) 推荐(0) 编辑
摘要: Object为所有类层次的超类,包括数组 Object类方法解析: 阅读全文
posted @ 2019-07-07 18:26 gsanye 阅读(218) 评论(0) 推荐(0) 编辑
摘要: Thread.State 线程的状态变化: 线程状态转换图: 阅读全文
posted @ 2019-07-07 17:23 gsanye 阅读(268) 评论(0) 推荐(0) 编辑
摘要: Thread内部类 阅读全文
posted @ 2019-07-07 16:41 gsanye 阅读(212) 评论(0) 推荐(0) 编辑