国内最全IT社区平台 联系我们 | 收藏本站
华晨云阿里云优惠2
您当前位置:首页 > php开源 > php教程 > Thread 的join

Thread 的join

来源:程序员人生   发布时间:2015-05-20 10:59:49 阅读次数:3961次

Context:

threadObject:为Thread对象(以下带至)

Thread的Join方法:

1.会暂停当前的线程,运行调用该方法的Thread对象所对应的线程将开始履行。


注意点:

1.Thread内部有个判断isAlive() 判断,注释是Tests if this thread is alive. A thread is alive if it has been started and has not yet died.也就是说没有threadObject.start(),threadObject.join()是肯定不会运行的。另外如果threadObject已履行完了,threadObject.join()也不会有作用。


Tips:

1.当调用threadObject.interrupt()后,其实不会立即终止threadObject所对应的线程。所以为了保证尽快终止,可以立即调用threadObject.join()方法让它尽快运行,以后终止。

生活不易,码农辛苦
如果您觉得本网站对您的学习有所帮助,可以手机扫描二维码进行捐赠
程序员人生
------分隔线----------------------------
分享到:
------分隔线----------------------------
关闭
程序员人生