from PyQt5.QtCore import QObject # 创建一个QObject对象 obj = QObject() # 获得父类 mros = QObject.mro() for mro in mros: print(mro) # 结果 ...
確定! 回上一頁