对Python中的@classmethod⽤法详解
在Python⾯向对象编程中的类构建中,有时候会遇到@classmethod的⽤法。
总感觉有这种特殊性说明的⽤法都是⾼级⽤法,在我这个层级的⽔平中⼀般是⽤不到的。
不过还是好奇去查了⼀下。
⼤致可以理解为:使⽤了@classmethod修饰的⽅法是类专属的,⽽且是可以通过类名进⾏调⽤的。为了能够展⽰其与⼀般⽅法的差异,写⼀段简单的代码如下:
class DemoClass:
@classmethod
def classPrint(self):
print("class method")programme用法
def objPrint(self):
print("obj method")
obj = DemoClass()
obj.objPrint()
obj.classPrint()
DemoClass.classPrint()
DemoClass.objPrint()
程序的执⾏结果如下:
grey@DESKTOP-3T80NPQ:/mnt/e/01_workspace/02_programme_language/03_python/03_OOP/2017/08$python classmethod.py
obj method
class method
class method
Traceback (mostrecent call last):
File "classmethod.py", line 13, in<module>
DemoClass.objPrint()
TypeError: unboundmethod objPrint() must be called with DemoClass instance as first argument (gotnothing instead)
grey@DESKTOP-3T80NPQ:/mnt/e/01_workspace/02_programme_language/03_python/03_OOP/2017/08$exit
exit
E:\01_workspace\02_programme_language\03_python\03_OOP\2017\08>pythonclassmethod.py
obj method
class method
class method
Traceback (mostrecent call last):
File "classmethod.py", line 13, in<module>
DemoClass.objPrint()
TypeError:objPrint() missing 1 required positional argument: 'self'
上⾯的程序执⾏,我是在两个操作系统中的两个Python版本环境中进⾏的。不管是Py2还是Py3,这⽅⾯的设计都是差不多的。总体来说,这种⽤法还是很微妙的。由于没有⾜够的实战历练,暂时还说不好这个东西有什么更好的优势。
这篇对Python中的@classmethod⽤法详解就是⼩编分享给⼤家的全部内容了,希望能给⼤家⼀个参考,也希望⼤家多多⽀持。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论