#开进程的方法二:
import time
import random
from multiprocessing import Process
class Piao(Process):
def __init__(self,name):
super().__init__()
self.name=name
def run(self):
print(‘%s piaoing‘ %self.name)
time.sleep(random.randrange(1,5))
print(‘%s piao end‘ %self.name)
p1=Piao(‘egon‘)
p2=Piao(‘alex‘)
p3=Piao(‘wupeiqi‘)
p4=Piao(‘yuanhao‘)
p1.start() #start会自动调用run
p2.start()
p3.start()
p4.start()
print(‘主线程‘)
创建并开启子进程的两种方式2
Posted xiongrongqin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了创建并开启子进程的两种方式2相关的知识,希望对你有一定的参考价值。
以上是关于创建并开启子进程的两种方式2的主要内容,如果未能解决你的问题,请参考以下文章