码迷,mamicode.com
首页 > 系统相关 > 详细

03 基于事件的进程通信

时间:2019-01-14 15:56:06      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:计算   nbsp   tar   col   style   imp   def   通信   multi   

import time
from multiprocessing import Process,Event


def f1(e):
    time.sleep(2)
    n = 100
    print(子进程计算结果为,n)
    e.set()


if __name__ == __main__:
    e = Event()

    p = Process(target=f1,args=(e,))
    p.start()

    print(主进程等待...)
    e.wait()
    print(结果已经写入文件了,可以拿到这值)

 

03 基于事件的进程通信

标签:计算   nbsp   tar   col   style   imp   def   通信   multi   

原文地址:https://www.cnblogs.com/work14/p/10267069.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!