什么是面向对象 类中的方法 总结 类中的方法: 普通方法 def fuc(self): ----->self 对象 pass 类方法 @classmethod def fuc(calss): --->cls 类 pass 静态方法 @staticmethod def fuc(): 不含参数 pass 魔术方法 __str__ __init__ __new__ __call__ __del__ 私有化 继承