import threading #线程
import time

class Work(threading.Thread):
def __init__(self,n):
threading.Thread.__init__(self) #改写父类init方法 并把self 传递过去
self.n = n

def run(self): #run是固定写这的
print(self.n)


t1 = Work(1)
t1.start() #start()就是去调用run方法
posted on 2018-05-30 10:35  Python哥  阅读(266)  评论(0编辑  收藏  举报