鱼C论坛

 找回密码
 立即注册
查看: 2785|回复: 1

求问各位大大,,,

[复制链接]
发表于 2020-3-3 16:50:21 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
  1. from multiprocessing import Process
  2. import time
  3. class Myprocess(Process):
  4.     def __init__(self,name):
  5.         self.name=name
  6.         super().__init__()

  7.     def run(self):
  8.         print(f'{self.name} is running!!!')
  9.         time.sleep(5)
  10.         print(f'{self.name} is end!!!')
  11. if __name__=='__main__':
  12.     p=Myprocess('alex')
  13.     p.start()
  14.     print('++++主')
复制代码



小甲鱼最新课程 -> https://ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2020-3-3 16:51:28 | 显示全部楼层
  1. from multiprocessing import Process
  2. import time
  3. class Myprocess(Process):
  4.     def __init__(self,name):
  5.         super().__init__()
  6.         self.name=name
  7.         

  8.     def run(self):
  9.         print(f'{self.name} is running!!!')
  10.         time.sleep(5)
  11.         print(f'{self.name} is end!!!')
  12. if __name__=='__main__':
  13.     p=Myprocess('alex')
  14.     p.start()
  15.     print('++++主')

  16. 为什么 将super换一下位置  输出结果不一致。。。
复制代码
小甲鱼最新课程 -> https://ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2026-1-23 04:34

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表