使用注意
1、@classmethod必须位于方法的上行。
2、必须有第一个cls。
cls是指类对象本身。
3、访问实例属性和实例方法会导致错误。
4、当子类继承父类方法时,cls是子类对象,而不是父类对象。
5、实例对象也可以访问类别方法。
实例
classHouse(object): price='high' print(House.price) h=House() print(h.price) House.price='toohigh' print(House.price) print(h.price) print('-'*20) h.price='high' print(House.price) print(h.price)
以上是使用python方法的注意事项,希望对大家有所帮助。更多Python学习指导:python基础教程
本文教程操作环境:windows7系统Python 3.9.1,DELL G3电脑。