对Python中的@classmethod用法详解
作者:grey_csdn 时间:2023-07-22 17:55:54
在Python面向对象编程中的类构建中,有时候会遇到@classmethod的用法。
总感觉有这种特殊性说明的用法都是高级用法,在我这个层级的水平中一般是用不到的。
不过还是好奇去查了一下。
大致可以理解为:使用了@classmethod修饰的方法是类专属的,而且是可以通过类名进行调用的。为了能够展示其与一般方法的差异,写一段简单的代码如下:
class DemoClass:
@classmethod
def classPrint(self):
print("class method")
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用法详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持脚本之家。
来源:https://blog.csdn.net/grey_csdn/article/details/77409429
标签:python,classmethod
0
投稿
猜你喜欢
Python程序员鲜为人知但你应该知道的17个问题
2021-06-14 11:37:14
Linux 自动备份oracle数据库详解
2023-07-14 08:11:41
PyCharm 2020.2下配置Anaconda环境的方法步骤
2022-10-08 14:25:00
Python定时爬取微博热搜示例介绍
2022-09-18 21:59:18
人脸识别实战之Opencv+SVM实现人脸识别
2021-01-06 09:32:13
Python Pandas 修改表格数据类型 DataFrame 列的顺序案例
2023-02-27 17:47:37
tf.nn.conv2d与tf.layers.conv2d的区别及说明
2021-03-29 13:36:53
python实现简单ftp客户端的方法
2023-12-14 20:07:31
Python深入06——python的内存管理详解
2021-07-29 05:18:26
PHP观察者模式原理与简单实现方法示例
2024-05-03 15:49:15
vue中为何方法要写在methods的里面
2024-05-10 14:19:24
Python绘制3d螺旋曲线图实例代码
2022-12-22 01:30:23
Python爬虫UA伪装爬取的实例讲解
2021-12-01 22:48:00
在 Jupyter 中重新导入特定的 Python 文件(场景分析)
2021-01-30 01:16:57
RHEL下架设MYSQL集群
2008-12-24 16:05:00
Python中sorted()用法案例代码
2022-01-20 04:08:00
MySQL每天自动增加分区的实现
2024-01-23 16:18:37
MySQL使用聚合函数进行单表查询
2024-01-14 10:41:20
Python实现桌面翻译工具【新手必学】
2021-03-27 08:32:47
Golang实现http重定向https
2024-04-26 17:27:57