欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

thread 的join

程序员文章站 2022-03-06 22:45:57
...

java里面也有这个方法,Java Thread中, join() 方法主要是让调用该方法的thread完成run方法里面的东西后, 在执行join()方法后面的代码。

Thread thread = new Thread(new Test()); 
        System.out.println("start...."); 
        thread.start(); 
        thread.join(); 

        System.out.println("after thread runed"); 
相关标签: thread