码迷,mamicode.com
首页 > 其他好文 > 详细

类方法

时间:2018-12-19 21:03:57      阅读:167      评论:0      收藏:0      [点我收藏+]

标签:pre   eth   对象   实例   self   person   装饰器   int   ssm   

class Person:

    # 实例方法
    def chi(self):
        print("人会吃")

    @classmethod  # 装饰器, 此时这个方法是一个类方法
    def he(cls): # 此时接收到的cls是类名
        # print(cls)
        print("人会喝")


# 用对象访问
# p = Person()
# p.he() # 在调用类方法的时候. 默认的把类名传递给类方法
# print(Person)


# 类方法一般用类名去访问
Person.he() # 类方法

  

类方法

标签:pre   eth   对象   实例   self   person   装饰器   int   ssm   

原文地址:https://www.cnblogs.com/work14/p/10145426.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!