Skip to content

Commit

Permalink
Merge branch 'master' of https://github.com/Snailclimb/JavaGuide
Browse files Browse the repository at this point in the history
  • Loading branch information
Snailclimb committed Mar 27, 2020
2 parents 2013d5a + 45b7c13 commit 91f89a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/java/Multithread/java线程池学习总结.md
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ pool-1-thread-1 End. Time = Tue Nov 12 20:59:54 CST 2019

没搞懂的话,也没关系,可以看看我的分析:

> 我们在代码中模拟了 10 个任务,我们配置的核心线程数为 5 、等待队列容量为 100 ,所以每次只可能存在 5 个任务同时执行,剩下的 5 个任务会被放到等待队列中去。当前的 5 个任务之行完成后,才会之行剩下的 5 个任务。
> 我们在代码中模拟了 10 个任务,我们配置的核心线程数为 5 、等待队列容量为 100 ,所以每次只可能存在 5 个任务同时执行,剩下的 5 个任务会被放到等待队列中去。当前的 5 个任务执行完成后,才会执行剩下的 5 个任务。
### 4.3 几个常见的对比

Expand Down

0 comments on commit 91f89a1

Please sign in to comment.