Python3.6内置函数(11)——classmethod()

英文文档

classmethod(function)

Return a class method for function.

A class method receives the class as implicit first argument, just like an instance method receives the instance. To declare a class method, use this idiom:

class C:

    @classmethod

    def f(cls, arg1, arg2, ...): ...

classmethod()

1、classmethod 是一个装饰器函数,用来标示一个方法为类方法

2、类方法的第一个参数是类对象参数,在方法被调用的时候自动将类对象传入,参数名称约定为cls

3、如果一个方法被标示为类方法,则该方法可被类对象调用(如 C.f()),也可以被类的实例对象调用(如 C().f())

>>> class C:
     @classmethod
     def f(cls, arg1):
           print (cls)
           print (arg1)       

>>> C.f('类对象调用类方法')

类对象调用类方法
>>> c = C()
>>> c.f('类实例对象调用类方法')

类实例对象调用类方法

4、类被继承后,子类也可以调用父类的类方法,但是第一个参数传入的是子类的类对象

>>> class D(C):
       pass
>>> D.f("子类的类对象调用父类的类方法")

子类的类对象调用父类的类方法

小结

希望通过上面的操作能帮助大家。如果你有什么好的意见,建议,或者有不同的看法,希望你留言和我进行交流、讨论。

欢迎关注微信公众号,访问更多精彩:数据之魅

如需转载,请联系授权,谢谢合作。

你可能感兴趣的:(Python,编程,大数据,原创文章,Python)