為什么需要super. 在python沒有引入super之前, 如果需要在子類中引用父類的方法, 一般寫法如下: class Father: def whoami(self): print("I am father") class Child: ...
確定! 回上一頁