多线程
wo1901446409
我就是我
展开
-
线程启动 为啥 是start() 不是run();代码实战
Start()会启动一个新线程 执行 run()方法体。直接调用run()不会启动新线程,在当前线程执行run()方法体。 https://blog.csdn.net/qq_40406929/article/details/87636701 ...原创 2019-11-21 16:57:17 · 199 阅读 · 0 评论 -
信号量。semaphore实战
/** * @ClassName: StartRunTest * @date 2019年11月21日下午4:02:36 * @version: V1.0 */ public class StartRunTest { public static void main(String[] args) { Semaphore semaphore = new Semapho...原创 2019-11-21 16:53:41 · 180 阅读 · 0 评论