欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Python多线程报错之RuntimeError

程序员文章站 2022-06-11 17:07:57
...

写多线程脚本,运行的时候报错

File “/usr/local/lib/python2.6/threading.py”, line 465, in start
raise RuntimeError(“thread.init() not called”)
RuntimeError: thread.init() not called

原因是线程类中构造函数__init__()中未调用父类的初始化方法,在__init__()函数里加入调用父类初始化方法的代码就OK了,

类似下边这样 threading.Thread.init(self)

class MyThread(threading.Thread):
    def __init__(self,ip_port_seg):
        threading.Thread.__init__(self)
        self.ip_port_seg = ip_port_seg

转自(https://www.cnblogs.com/evilloop/archive/2011/09/22/2184710.html)

相关标签: 开发