Python简单的多线程demo:装逼写法

用面向对象来写多线程:

import threading

class MyThread(threading.Thread):
    def __init__(self, n):
        super(MyThread, self).__init__()
        self.n = n
    def run(self):
        print("running task:",self.n)


t1 = MyThread("t1")
t2 = MyThread("t2")
t1.start()
t2.start()

猜你喜欢

转载自www.cnblogs.com/staff/p/9656913.html
今日推荐