的Python:RuntimeError:超一流的__init __()%S的从未叫(Python:

2019-06-27 20:47发布

我试图做一些操作( setParent在Python的对象(其从不同的类继承的类的一个实例-具体而言为上) QtGui.QLabel ),但是在运行时期间升至上述错误。 对象本身已与实际内容(在调试验证)的某些字段,但是从某些原因,我不能“利用”它。 什么是错误的意思是,我该如何解决? 对于一些更多的信息,我会说,对象是从一个静态方法之前,我试图做它该操作返回。

子类有__init__()它自己的功能:

def __init__(self, image, father):
        super(AtomicFactory.Image, self).__init__(father)
        self.raw_attributes = image.attributes
        self.attributes = {}
        father.addChild(self)
        self.update()

现在,我写了一个类似的代码,一个简单的,这有就行了同样的错误widget.setParent(mw)时,被移动的窗口。

#!/usr/bin/env python
import sys
import copy
from PyQt4 import QtCore, QtGui

if __name__ == "__main__":
    app = QtGui.QApplication(sys.argv)
    main_widget=QtGui.QWidget()
    widget = QtGui.QPushButton('Test')
    widget.resize(640, 480)
    widget.setParent(main_widget)
    widget.move(0, 0)
    widget2=QtGui.QPushButton('Test2')
    widget2.i=0
    widget2.resize(600, 200)
    widget2.setParent(main_widget)
    widget2.move(640, 0)
    def onResize(event):
        print event
        mw=copy.deepcopy(main_widget)
        widget.setParent(mw)
        widget2.setParent(mw)
        widget.move(0, 0)
        widget2.move(640, 480)
        main_widget_width=main_widget.width()
        widget_width=widget.width()
        width2=main_widget_width-widget_width
        height2=widget2.height()
        widget2.resize(width2, height2)
        widget2.move(640, 0)
    main_widget.resizeEvent=onResize
    def onClick():
        size=(widget2.width(), widget2.height())
        if(widget2.i%2==0):
            widget2.resize(int(size[0]/2), int(size[1]/2))
        else:
            widget2.resize(size[0]*2, size[1]*2)
        widget2.i+=1
    QtCore.QObject.connect(widget, QtCore.SIGNAL('clicked()'), onClick)
    main_widget.show()
    sys.exit(app.exec_())

什么问题?

Answer 1:

如果你想继承QObject (或QWidget ),你必须总是调用超类__init__

class MyObject(QObject):
    def __init__(self, *args, **kwargs):
        super(MyObject, self).__init__(arguments to parent class)
        #other stuff here

您也可以拨打父类的__init__一些指令后,但你不能调用QObject方法或使用QObject属性,直到你这样做了。


编辑 :在你的情况你想deepcopy一个QWidget ,但是这是不可能的。 蟒蛇可能能够复制的包装 QWidget ,但QWidget本身是一个C ++对象是Python不能用的默认实现处理copy.deepcopy ,因此只要您拨打复制的实例的方法,你得到的RuntimeError因为基础C ++对象没有被正确初始化。

这同样适用于酸洗这些对象如此。 Python是能够取储存实例当结果是一个已损坏的实例,以酸洗包装 ,而不是C ++对象本身,因此。

为了支持deepcopy()QWidget类应实现__deepcopy__方法,但它没有做到这一点。

如果你想复制部件你必须自己来实现手动所有的机制。



文章来源: Python: RuntimeError: super-class __init__() of %S was never called