Python简单的多线程demo:装逼写法
Posted staff
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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()
以上是关于Python简单的多线程demo:装逼写法的主要内容,如果未能解决你的问题,请参考以下文章