标签:pre 传递 装饰器 方法 调用 elf class person ssm
class Person: # 实例方法 def chi(self): print("人会吃") @classmethod # 装饰器, 此时这个方法是一个类方法 def he(cls): # 此时接收到的cls是类名 # print(cls) print("人会喝") # 用对象访问 # p = Person() # p.he() # 在调用类方法的时候. 默认的把类名传递给类方法 # print(Person) # 类方法一般用类名去访问 Person.he() # 类方法
标签:pre 传递 装饰器 方法 调用 elf class person ssm
原文地址:https://www.cnblogs.com/demons97/p/10187479.html