美文网首页
Python 静态方法

Python 静态方法

作者: 渭小粉 | 来源:发表于2019-03-19 15:48 被阅读0次

静态方法就是直接通过类来调用的方法,在python当中是用的比较少的方法。

1. 在方法上添加 @classmethod 装饰器

2. 静态方法的第一个参数是cls, 也就是类本身

举例子:

>>> class Test:

...    @classmethod

...    def  test(cls):

...            print('class method')

...

相关文章

网友评论

      本文标题:Python 静态方法

      本文链接:https://www.haomeiwen.com/subject/vxfnmqtx.html