diff --git a/notes/Java 并发.md b/notes/Java 并发.md index 676c41ae..7b13cff7 100644 --- a/notes/Java 并发.md +++ b/notes/Java 并发.md @@ -40,6 +40,7 @@ 实现 Runnable 和 Callable 接口的类只能当做一个可以在线程中运行的任务,不是真正意义上的线程,因此最后还需要通过 Thread 来调用。可以说任务是通过线程驱动从而执行的。 + ## 1. 实现 Runnable 接口 需要实现 run() 方法