多进程的调用(multiprocessing.Process)
2021/6/9 7:26:37
本文主要是介绍多进程的调用(multiprocessing.Process),对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
import multiprocessing, time, os # def pro(name): # print('hello', name, time.ctime()) # # if __name__ == '__main__': # l = [] # for t in range(4): # t = multiprocessing.Process(target=pro, args=('alex',)) # t.start() # l.append(t) # for t in l: # t.join() # print('end...') # class MyProcess(multiprocessing.Process): # def __init__(self, city): # super(MyProcess, self).__init__() # self.city = city # # def run(self): # '''继承同样重写run方法''' # print('hello', self.name, time.ctime()) # self.name代表进程名MyProcess-1,MyProcess-2,MyProcess-3,MyProcess-4 # # if __name__ == '__main__': # l = [] # for t in range(4): # t = MyProcess('China') # # t.daemon = True # 和线程不一样的是,进程是daemon且不是方法而是属性,直接赋值True就行 # t.start() # l.append(t) # for t in l: # t.join() # print('end...') def info(title): print('title:', title) print('父进程ID:', os.getppid()) # os.getppid()所运行进程的父进程ID,主进程的父进程是pacharm程序 print('该进程ID:', os.getpid()) # os.getpid()所运行进程ID def f(name): info(name) print('hello', name) if __name__ == '__main__': f('main process line') time.sleep(1) p = multiprocessing.Process(target=f, args=('alex',)) p.start() p.join()
这篇关于多进程的调用(multiprocessing.Process)的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-07Cursor 收费太贵?3分钟教你接入超低价 DeepSeek-V3,代码质量逼近 Claude 3.5
- 2025-01-06PingCAP 连续两年入选 Gartner 云数据库管理系统魔力象限“荣誉提及”
- 2025-01-05Easysearch 可搜索快照功能,看这篇就够了
- 2025-01-04BOT+EPC模式在基础设施项目中的应用与优势
- 2025-01-03用LangChain构建会检索和搜索的智能聊天机器人指南
- 2025-01-03图像文字理解,OCR、大模型还是多模态模型?PalliGema2在QLoRA技术上的微调与应用
- 2025-01-03混合搜索:用LanceDB实现语义和关键词结合的搜索技术(应用于实际项目)
- 2025-01-03停止思考数据管道,开始构建数据平台:介绍Analytics Engineering Framework
- 2025-01-03如果 Azure-Samples/aks-store-demo 使用了 Score 会怎样?
- 2025-01-03Apache Flink概述:实时数据处理的利器