📜  python类覆盖长度方法 - Python代码示例

📅  最后修改于: 2022-03-11 14:45:55.765000             🧑  作者: Mango

代码示例1
class Liar(list):
    def __len__(self, items):
        real_length= super().__len__(items)
        return real_length+=3