自定义线程类
Posted dsowasp
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了自定义线程类相关的知识,希望对你有一定的参考价值。
简单示例代码:
import threading class MyThread(threading.Thread): def __init__(self,num): super(MyThread,self).__init__() self.num = num def run(self): print(self.num) mt = MyThread(3) mt.start()
以上是关于自定义线程类的主要内容,如果未能解决你的问题,请参考以下文章