Merge pull request #211 from taojintianxia/patch-1

Update Java 并发.md
This commit is contained in:
CyC2018 2018-04-18 13:18:54 +08:00 committed by GitHub
commit 73a893cc70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -192,7 +192,7 @@ Executor 管理多个异步任务的执行,而无需程序员显示地管理
主要有三种 Executor 主要有三种 Executor
1. CachedTreadPool一个任务创建一个线程 1. CachedThreadPool一个任务创建一个线程
2. FixedThreadPool所有任务只能使用固定大小的线程 2. FixedThreadPool所有任务只能使用固定大小的线程
3. SingleThreadExecutor相当于大小为 1 的 FixedThreadPool。 3. SingleThreadExecutor相当于大小为 1 的 FixedThreadPool。