python 多线程(并行编程 3)

2019-07-30 10:56:24 浏览数 (1)

threading方法:

image.png

获取当前线程对象: import threading import time

def function(i): print("function called by thread %i" % i) print(threading.currentThread().getName()) threads=[] for i in range(5): t=threading.Thread(target=function,args=(i,)) threads.append(t) t.start() t.join()

多线程重载

class MyThread(Thread): def init(self, name='PHP'): super().init() # 注意: super().init() 一定要写,而且要写在最前面,否则会报错。 self.name=name

代码语言:javascript复制
def run(self):          # 类似于方法1中的自定义线程函数,方法的覆写
    for i in range(2):
        print('hello %s' % self.name)
        time.sleep(1)

if name == 'main': thread_03 = MyThread() # 创建线程03,不指定参数 thread_04 = MyThread('Java',) # 创建线程024,指定参数

代码语言:javascript复制
thread_03.start()
thread_04.start()

0 人点赞