标签:target code 线程创建 art 数据 多线程 fun hone int
内部自动为每个线程维护一个空间(字典),用于当前存取属于自己的值.保证线程之间的数据隔离.
{
线程ID: {...}
线程ID: {...}
线程ID: {...}
线程ID: {...}
}
import time
import threading
v = threading.local()
def func(arg):
# 内部会为当前线程创建一个空间用于存储:phone=自己的值
v.phone = arg
time.sleep(2)
# 去当前线程自己空间取值
print(v.phone, arg)
for i in range(10):
t = threading.Thread(target=func, args=(i,))
t.start()
标签:target code 线程创建 art 数据 多线程 fun hone int
原文地址:https://www.cnblogs.com/apollo1616/p/10350959.html