我目前正在尝试弄清楚线程如何在 python 中工作。
我有以下代码:
def func1(arg1, arg2):
print current_thread()
....
class class1:
def __init__():
....
def func_call():
print current_thread()
t1 = threading.Thread(func1(arg1, arg2))
t1.start()
t1.join()
我注意到的是两个打印输出相同的东西。为什么线程没有变化?