2019年1月8日

join方法

摘要: import time from multiprocessing import Process def f1(): time.sleep(2) print('xxxx') def f2(): time.sleep(2) print('ssss') # f1() # f2() if __name__ == '__main__': p1 = Proce... 阅读全文

posted @ 2019-01-08 15:19 =.=== 阅读(180) 评论(0) 推荐(0) 编辑

30 进程 线程

摘要: 01 multiprocessing模块简单应用 02 for循环创建进程 03 进程传参方式和创建方式2 04 join方法 详细:https://www.cnblogs.com/clschao/articles/9629392.html 阅读全文

posted @ 2019-01-08 15:19 =.=== 阅读(136) 评论(0) 推荐(0) 编辑

进程传参方式和创建方式2

摘要: from multiprocessing import Process #演示两种传参方式 # def f1(n): # print(n) # # # if __name__ == '__main__': # # p1 = Process(target=f1,args=('大力与奇迹',)) #创建进程对象 # p1 = Process(target=f1,kwargs... 阅读全文

posted @ 2019-01-08 15:18 =.=== 阅读(249) 评论(0) 推荐(0) 编辑

multiprocessing模块简单应用

摘要: import time from multiprocessing import Process def f1(): time.sleep(3) print('xxxx') def f2(): time.sleep(3) print('ssss') # f1() # f2() #windows系统下必须写main,因为windows系统创建子进程的方式决定... 阅读全文

posted @ 2019-01-08 15:17 =.=== 阅读(122) 评论(0) 推荐(0) 编辑

02 for循环创建进程

摘要: import time from multiprocessing import Process def f1(i): time.sleep(3) print(i) if __name__ == '__main__': for i in range(20): p1 = Process(target=f1,args=(i,)) p1.st... 阅读全文

posted @ 2019-01-08 15:17 =.=== 阅读(140) 评论(0) 推荐(0) 编辑

导航