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