1
gdqyn 2015-01-29 16:57:41 +08:00
在我的实践过程中是见过有的
|
2
gdqyn 2015-01-29 16:59:18 +08:00
sorry看错了,是Python啊,Python不知道,丢人了
|
3
wuhang89 2015-01-29 17:33:07 +08:00
看具体项目,不过就python渣一般的线程也真无力吐槽了。
|
4
lazywen 2015-01-29 17:40:26 +08:00
不会内存泄露,看需求join
|
5
zerh925 2015-01-30 09:40:03 +08:00
不一定,join()是等待线程跑完,需要回调函数就join(),否则直接start就行了。
|
6
1989922yan 2015-01-30 14:06:32 +08:00
@zerh925 看文档中,一定需要join,应该是这样的
|
7
ryanking8215 OP @1989922yan 文档里没说“一定”
Other threads can call a thread’s join() method. This blocks the calling thread until the thread whose join() method is called is terminated. ‘can’ |
8
inevermore 2015-01-31 21:30:39 +08:00
Python的线程没有detach选项,
我记得是你得保证main线程一直在运行,就可以不去join |