python多进程间通信
这里使用pipe代码如下:
import time from multiprocessing import Process import multiprocessing class D: @staticmethod def test(pipe): while True: for i in range(10): pipe.send(i) time.sleep(2) @staticmethod def test2(pipe): while True:
print('test2 value:%s' % pipe.recv()) time.sleep(2) if __name__ == '__main__': pipe = multiprocessing.Pipe() p = Process(target=D.test2,args=(pipe[0],)) p2 = Process(target=D.test,args=(pipe[1],)) p.start() p2.start()
执行后的效果:
本文来自博客园,作者:沉迷编程的程序员,转载请注明原文链接:https://www.cnblogs.com/codeDevotee/p/11553556.html
欢迎各位找我代写程序,python、c#、web等都可以,加我请注明博客园微信:A15919195482