码迷,mamicode.com
首页 > 系统相关 > 详细

进程基础整理

时间:2018-09-13 13:57:28      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:bsp   start   实例   进程   实现   init   run   import   style   

进程实例:
import threading

import time
def run(n):
print("task",n)
time.sleep(2)
t1 = threading.Thread(target=run,args = ("t1",))
t2 = threading.Thread(target=run,args = ("t2",))
t1.start()
t2.start()

多线程实现方法:
class MyThread(threading.Thread):
def __init__(self,n):
super(MyThread,self).__init__()
self.n = n
def run(self):
print("runint task",self.n)
t1 = MyThread("t1")
t1.run()
 

进程基础整理

标签:bsp   start   实例   进程   实现   init   run   import   style   

原文地址:https://www.cnblogs.com/fgxwan/p/9639785.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!