We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c58d5c3 commit 9752436Copy full SHA for 9752436
docs/java/concurrent/java-concurrent-questions-03.md
@@ -249,7 +249,7 @@ public class ThreadPoolExecutorDemo {
249
new ThreadPoolExecutor.CallerRunsPolicy());
250
251
for (int i = 0; i < 10; i++) {
252
- //创建WorkerThread对象(WorkerThread类实现了Runnable 接口)
+ //创建 MyRunnable 对象(MyRunnable 类实现了Runnable 接口)
253
Runnable worker = new MyRunnable("" + i);
254
//执行Runnable
255
executor.execute(worker);
@@ -630,4 +630,4 @@ CompletableFuture<Void> allFutures = CompletableFuture.allOf(
630
- 《深入理解 Java 虚拟机》
631
- 《实战 Java 高并发程序设计》
632
- Java并发之AQS详解:https://www.cnblogs.com/waterystone/p/4920797.html
633
-- Java并发包基石-AQS详解:https://www.cnblogs.com/chengxiao/archive/2017/07/24/7141160.html
+- Java并发包基石-AQS详解:https://www.cnblogs.com/chengxiao/archive/2017/07/24/7141160.html
0 commit comments