在join()之后线程不会停止

时间:2016-05-08 15:09:36

标签: python multithreading

我有这段代码

import threading

def a0():
    import a00
def a1():
    import a10
t0 = threading.Thread(target=a0)
t1 = threading.Thread(target=a1)
t0.start()
t1.start()
t0.join()
t1.join()
# some code

但该程序没有运行#somecode。 但是,当我的代码就像

import threading

def a0():
    import a00
def a1():
    import a10
t0 = threading.Thread(target=a0)
t1 = threading.Thread(target=a1)
t0.start()
t1.start()
# some code

我的程序正在运行,但是t0和t1还没有完成。我怎么解决这个问题?

0 个答案:

没有答案