File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 9292* ** [ Java 并发进阶常见面试题总结] ( docs/java/Multithread/JavaConcurrencyAdvancedCommonInterviewQuestions.md ) **
9393* [ 并发容器总结] ( docs/java/Multithread/并发容器总结.md )
9494* ** [ Java线程池学习总结] ( ./docs/java/Multithread/java线程池学习总结.md ) **
95- * [ 如何确定线程池线程数量 ?] ( )
95+ * [ 如何设置线程池大小 ?] ( )
9696
9797* [ 乐观锁与悲观锁] ( docs/essential-content-for-interview/面试必备之乐观锁与悲观锁.md )
9898* [ JUC 中的 Atomic 原子类总结] ( docs/java/Multithread/Atomic.md )
Original file line number Diff line number Diff line change @@ -62,6 +62,8 @@ Executor 框架是 Java5 之后引进的,在 Java 5 之后,通过 Executor
6262
6363> 补充:this 逃逸是指在构造函数返回之前其他线程就持有该对象的引用. 调用尚未构造完全的对象的方法可能引发令人疑惑的错误。
6464
65+ Executor 框架不仅包括了线程池的管理,还提供了线程工厂、队列以及拒绝策略等,Executor 框架让并发编程变得更加简单。
66+
6567### 2.2 Executor 框架结构(主要由三大部分组成)
6668
6769#### 1) 任务(` Runnable ` /` Callable ` )
You can’t perform that action at this time.
0 commit comments