53 - @classmethod 和@staticmethod 的用法和区别
【摘要】 请解释@classmethod 和@staticmethod 的用法和区别
共同点 都是用来声明静态方法的 类名.方法名 区别 @staticmethod 不需要表示自身对象的self和自身类的cls参数,就像普通函数一样定义@classmethod 也不需要self参数,但第二个参数需要是表示自身的cls参数,避免硬编码
class MyClass: bar =...
请解释@classmethod 和@staticmethod 的用法和区别
- 共同点
- 都是用来声明静态方法的 类名.方法名
- 区别
- @staticmethod 不需要表示自身对象的self和自身类的cls参数,就像普通函数一样定义
- @classmethod 也不需要self参数,但第二个参数需要是表示自身的cls参数,避免硬编码
class MyClass: bar = 1 # 静态变量 def __init__(self): self.count = 20 def process(self): print('process', self.count) @staticmethod def static_process(): print('static_process') print(MyClass.bar) @classmethod def class_process(cls): print('class_process') print(cls.bar) print(cls) cls().process() print(cls().count) print(MyClass.bar)
MyClass.static_process()
MyClass.class_process()
MyClass.bar = 123
MyClass.static_process()
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
1
static_process
1
class_process
1
<class '__main__.MyClass'>
process 20
20
static_process
123
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
文章来源: ruochen.blog.csdn.net,作者:若尘,版权归原作者所有,如需转载,请联系作者。
原文链接:ruochen.blog.csdn.net/article/details/104720814
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)