python多线程安全local()
Posted Apollo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python多线程安全local()相关的知识,希望对你有一定的参考价值。
import time import threading from threading import local class Foo(local): pass # 实例化(创建)对象 foo = Foo() # 给Foo类添加静态变量 def add(i): foo.num = i time.sleep(1) # threading.current_thread().ident 线程PID print(foo.num, i, threading.current_thread().ident) for i in range(20): # 开启多线程 th = threading.Thread(target=add, args=(i,)) th.start()
以上是关于python多线程安全local()的主要内容,如果未能解决你的问题,请参考以下文章