我如何创建一个类,该类从其他两个类继承方法并共享自己的方法,并将它们的方法返回给他们

时间:2019-03-26 19:39:02

标签: python class inheritance instance parent-child

因此,我正在尝试在Python 2.7中执行以下操作:

editorTextFocus && !editorReadonly && !inSnippetMode && !suggestWidgetVisible

因此,两难选择是我希望Report类和Print类都能够从MasterClass访问方法和变量。我能以某种方式做到这一点吗?

1 个答案:

答案 0 :(得分:0)

最后,在这种情况下有效的解决方案是精心计划的继承和类初始化:

class Print(object)

class Report(Print)

class MasterClass(Report)