1
0
mirror of https://github.com/Snailclimb/JavaGuide synced 2025-06-16 18:10:13 +08:00

Optimize expression.

This commit is contained in:
smy1999 2024-03-21 16:11:01 +08:00
parent 3b5d9b47c4
commit bba45311ef

View File

@ -219,7 +219,7 @@ public ScheduledThreadPoolExecutor(int corePoolSize) {
### ThreadPoolExecutor 示例代码
首先创建一个 `Runnable` 接口的实现类(当然也可以是 `Callable` 接口,我们上面也说了两者的区别。)
首先创建一个 `Runnable` 接口的实现类(当然也可以是 `Callable` 接口,我们后面会介绍两者的区别。)
`MyRunnable.java`