我正在尝试自己学习PyQt
,rapid gui programming with python and qt
并且无法理解meaning/requirement
书中一个示例中提到的以下代码行。
class Form(QDialog):
def __init__(self,parent=None):
super(Form,self).__init__(parent) # Trouble understanding here
所以,我的问题是super(Form,self).__init__(parent)
它试图完整填写此代码的需要或目的是什么。