多重继承的 MRO
与前面类似,您构建了一个从 Computer 和 Telephone 两个类继承的 Smartphone 类。类定义大致如下:
class Smartphone(Computer, Telephone):
...
请确定在执行时,Python 在 Smartphone 类层次结构中查找方法的顺序。
本练习是课程的一部分
与前面类似,您构建了一个从 Computer 和 Telephone 两个类继承的 Smartphone 类。类定义大致如下:
class Smartphone(Computer, Telephone):
...
请确定在执行时,Python 在 Smartphone 类层次结构中查找方法的顺序。
本练习是课程的一部分