python 类方法|实例方法|静态方法

python 方法与C++的方法有相同点,也有不同点

class MyClass:
    """A simple example class"""
    i = 12345

    def f(self):#实例方法,加self区别于普通函数
        print( 'hello world')

    @classmethod
    def foo(cls):#类方法,通过类名可以调用
        print('class method')

    @staticmethod
    def soo():#使用了静态方法,则不能再使用self
        print('static method')

if __name__=='__main__':

    MyClass.f(0)
    MyClass.foo()
    MyClass.soo()
    print(MyClass.i)
    x = MyClass()
    x.f()

结果:

hello world
class method
static method
12345
hello world

实例方法调用,没有实例不能调用,self相当于C++的this

类方法与静态方法,不用实例也可调用。

类方法,@classmethod标记,可用于定义单一职责类,如Mix-in类;也可用于与构造器相仿的方式来构造类对象,也叫类方法多态机制,与C++的虚函数类似。

静态方法,@staticmethod标记符,多个实例共享,与C++类似。

参考:

  1. my coding.net
  2. python中的实例方法、类方法、静态方法的区别

你可能感兴趣的:(c++,python)