摘要: 基本的多进程的使用: 1 from multiprocessing import Process 2 import threading 3 import os 4 5 6 def info(title): 7 print(title) 8 print('module name:', __name__ 阅读全文
posted @ 2018-03-22 22:03 Ian_learning 阅读(236) 评论(0) 推荐(0) 编辑
摘要: 进程的概念: An executing instance of a program is called a process. Each process provides the resources needed to execute a program. A process has a virtua 阅读全文
posted @ 2018-03-22 15:35 Ian_learning 阅读(203) 评论(0) 推荐(0) 编辑