为了账号安全,请及时绑定邮箱和手机立即绑定

@classmethod的作用范围就是它接下来的那一个被定义的方法么?

@classmethod的作用范围就是它接下来定义的那一个方法么?

正在回答

2 回答

是,

class Person(object):

    __count = 0
    
    @classmethod
    def how_many(cls):
        return cls.__count
       
    #@classmethod
    def how_much(cls):
        return cls.__count
    
    def __init__(self,name):
        Person.__count += 1
        self.name = name

print Person.how_many()

p1 = Person('Bob')

print Person.how_much()
print Person.how_many()

在how_many()下添加添加how_much()方法,运行到line 21会报错,如下

0
Traceback (most recent call last):
  File "D:\py\person_class.py", line 21, in <module>
    print Person.how_much()
TypeError: unbound method how_much() must be called with Person instance as first argument (got nothing instead)

取消line 9的注释,代码正常运行

2 回复 有任何疑惑可以回复我~

@classmethod 用于标识紧接着它的那一个方法.

你的描述也是对的.

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
python进阶
  • 参与学习       255665    人
  • 解答问题       2949    个

学习函数式、模块和面向对象编程,掌握Python高级程序设计

进入课程

@classmethod的作用范围就是它接下来的那一个被定义的方法么?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信