本文主要是介绍Python中@classmethod和@staticmethod的区别,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
《Python中@classmethod和@staticmethod的区别》本文主要介绍了Python中@classmethod和@staticmethod的区别,文中通过示例代码介绍的非常详细,对大...
1.@classmethod
- class method是和类绑定的方法,不是和类的对象(实例)绑定的方法
- class method能够访问类的状态,因为它可以接受一个指向类的参数(cls),而不是指向类实例的参数(self)。
- class method可以修改类的状态,并应用到所有的类实例上。
class C(object): @classmethod def fun(cls, arg1, arg2, ...): .... fun: function that needs to be converted into a class method returns: a class method for function.
2.@staticmethod
- class method也是和类绑定的方法,不是和类的对象(实例)绑定
- class method不能访问类的状态
- class method存在于类中是因为它是一个相关的函数
class C(object):
http://www.chinasem.cn @staticmethod
def fun(arg1, arg2, ...):
...
returns: a static method for function fun.
3.例子
clpythonass A(object): value = 42 def m1(self): print(self.value) @classmethod javascriptdef m2(cls): print(cls.value) cls.value += 10 @stpythonaticmethod def m3(cls_instance): cls_instance.value -= 10 #小编创建了一个python学习交流群:531509025 a = A() # a.m1 # <bound method A.m1 of <__main__.A object at 0x7fc8400b7da0>> a.m1dQZBLwLMpn() # 42 # m1()是类A中的普通方法,必须在实例化的对象上进行调用。如果使用直接A.m1()就会得到m1() missing 1 required positional argument: 'self'的错误信息。
到此这篇关于Python中@classmethod和@staticmethod的区别的文章就介绍到这了,更多相关Python @classmethod和@staticmethod内容请搜索China编程(www.chinasem.cn)以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程China编程(www.chinasem.cn)!
这篇关于Python中@classmethod和@staticmethod的区别的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!