周末了,来到公司,空无一人。。。。。。。

python没有和C++中static关键字,它的静态方法是怎样的呢?还有其它语言中少有的类方法又是神马?
python中实现静态方法和类方法都是依赖于python的修饰器来实现的。

class MyClass:

    def  method(self):
           print("method")

    @staticmethod
    def  staticMethod():
            print("static method")

     @classmethod
     def classMethod(cls):
           print("class method")


大家注意到普通的对象方法、类方法和静态方法的去别了吗?
对象方法有self参数,类方法有cls参数,静态方法是不需要这些附加参数的。
在C++中是没有类方法着个概念的

相关文章:

  • 2022-02-09
  • 2021-08-11
  • 2021-08-19
  • 2021-09-17
  • 2022-12-23
  • 2021-08-16
猜你喜欢
  • 2021-11-09
  • 2022-12-23
  • 2022-12-23
  • 2021-09-17
  • 2022-02-24
  • 2021-07-22
相关资源
相似解决方案