Python 静态方法

2019-03-19  本文已影响0人  渭小粉

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

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

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

举例子:

>>> class Test:

...    @classmethod

...    def  test(cls):

...            print('class method')

...

上一篇 下一篇

猜你喜欢

热点阅读