Skip to content

Commit dee7d7d

Browse files
committed
ThreadPoolExecutor
1 parent 35179b5 commit dee7d7d

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

MD/ThreadPoolExecutor.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@
1010
## 创建一个线程池
1111

1212
以一个使用较多的
13-
`ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, RejectedExecutionHandler handler) ` 为例:
13+
14+
`ThreadPoolExecutor(int corePoolSize, int maximumPoolSize, long keepAliveTime, TimeUnit unit, BlockingQueue<Runnable> workQueue, RejectedExecutionHandler handler) `
15+
16+
为例:
1417

1518
- 其中的 `corePoolSize` 为线程池的基本大小。
1619
- `maximumPoolSize` 为线程池最大线程大小。

0 commit comments

Comments
 (0)