我有两个线程,两个线程都进行一组计算并获得结果。问题在于,线程的计算在某一点上都需要在另一点上获得的结果。我想到了继承,但只能将值从一个线程传递到另一个线程。如何在不使用全局变量的情况下在两个线程之间传递值?
我想做这样的事情。
class first(threading.Thread):
def __init__(self, flag, second):
##rest of the class first##
class second(threading.Thread):
def __init__(self, flag, first):
##rest of the class second##
def main():
flag=threading.Condition()
First=first(flag,Second)
First.start()
Second=second(flag,First)
Second.start()
执行上述操作时出现错误。