首先,我是多处理方面的新手,我来这里是为了向大家学习。我有几个文件在做类似的事情:
共享类.py:
class simpleClass():
a = 0
b = ""
.....
我的进程.py:
import multiprocessing
import SharedClass
class FirstProcess(multiprocessing.Process):
def __init__(self):
multiprocessing.Process.__init__(self)
def modifySharedClass():
# Here I want to modify the object shared with main.py defined in SharedClass.py
主要.py:
from MyProcess import FirstProcess
import sharedClass
if __name__ == '__main__':
pr = FirstProcess()
pr.start()
# Here I want to print the initial value of the shared class
pr.modifySharedClass()
# Here I want to print the modified value of the shared class
我想在一种共享内存中定义一个共享类(在 SharedClass.py 中),它可以对 Main.py 和 MyProcess.py 文件进行读写。
我尝试使用Manager
多处理,multiprocessing.array
但我没有很好的结果,在一个文件中所做的更改没有反映在另一个文件中(也许我以错误的方式这样做)。
有任何想法吗?谢谢你。