Update Java 并发.md

fix a spelling mistake
This commit is contained in:
孙念君 2018-04-18 12:02:06 +08:00 committed by GitHub
parent 6ee2aab80e
commit beef4997a3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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