静态方法 存储在类中 实例方法 与类方法都能调用 不需要 传递self 相当于在类里面写了一个函数
类方法 存储在类中 只能是类调用
普通方法 存储在类中 由实例对象使用
在实例化类的时候 就相当于调用了__init__方法
class test:
def __init__(self):
pass
a = test() ==> a = __init__()
原文地址:https://www.cnblogs.com/classmethond/p/9610158.html
时间: 2024-10-16 10:51:12