from multiprocessing import Process
import time
import random
class Piao(Process):
def __init__(self,name):
self.name=name
super().__init__()
def run(self):
print(‘%s is piaoing‘ %self.name)
time.sleep(random.randrange(1,3))
print(‘%s is piao end‘ %self.name)
p=Piao(‘egon‘)
p.start()
p.join(0.0001) #等待p停止,等0.0001秒就不再等了
print(‘开始‘)
Process对象的join方法
Posted xiongrongqin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Process对象的join方法相关的知识,希望对你有一定的参考价值。
以上是关于Process对象的join方法的主要内容,如果未能解决你的问题,请参考以下文章
RuntimeError: An attempt has been made to start a new process before the current process has...(代码片段