Skip to content

Commit ffbcf71

Browse files
authored
Update java线程池学习总结.md
1 parent c5e03c7 commit ffbcf71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/java/multi-thread/java线程池学习总结.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
这里借用《Java 并发编程的艺术》提到的来说一下**使用线程池的好处**
5555

5656
- **降低资源消耗**。通过重复利用已创建的线程降低线程创建和销毁造成的消耗。
57-
- **提高响应速度**。当任务到达时,任务可以不需要的等到线程创建就能立即执行
57+
- **提高响应速度**。当任务到达时,任务可以不需要等到线程创建就能立即执行
5858
- **提高线程的可管理性**。线程是稀缺资源,如果无限制的创建,不仅会消耗系统资源,还会降低系统的稳定性,使用线程池可以进行统一的分配,调优和监控。
5959

6060
## 二 Executor 框架

0 commit comments

Comments
 (0)