Python中staticmethod和classmethod的作用与区别


Posted in Python onOctober 11, 2018

一般来说,要使用某个类的方法,需要先实例化一个对象再调用方法。

而使用@staticmethod或@classmethod,就可以不需要实例化,直接类名.方法名()来调用。

这有利于组织代码,把某些应该属于某个类的函数给放到那个类里去,同时有利于命名空间的整洁。

既然@staticmethod和@classmethod都可以直接类名.方法名()来调用,那他们有什么区别呢

从它们的使用上来看

  • @staticmethod不需要表示自身对象的self和自身类的cls参数,就跟使用函数一样。
  • @classmethod也不需要self参数,但第一个参数需要是表示自身类的cls参数。

如果在@staticmethod中要调用到这个类的一些属性方法,只能直接类名.属性名或类名.方法名。

而@classmethod因为持有cls参数,可以来调用类的属性,类的方法,实例化对象等,避免硬编码。

要明白,什么是实例方法、静态方法和类方法:

class Demo(object):
 def instance_method(self, your_para):
 """
 this is an instance_method
 you should call it like the follow:
 a = Demo()
 a.instance_method(your_para)
 plus: in python, we denote 'cls' as latent para of Class
 while 'self' as latent para of the instance of the Class
 :param your_para: 
 :return: 
 """
 print("call instance_method and get:", your_para)
 @classmethod
 def class_method(cls, your_para):
 """
 this is a class_method
 you can call it like the follow:
 method1:
 a = Demo()
 a.class_method(your_para)
 method2:
 Demo.class_method
 plus: in python, we denote 'cls' as latent para of Class
 while 'self' as latent para of the instance of the Class
 :param your_para: 
 :return: 
 """
 print("call class_method and get:", your_para)
 @staticmethod
 def static_method(your_para):
 """
 this is a static_method and you can call it like the 
 methods of class_method
 :param your_para: 
 :return: 
 """
 print("call static_method and get:", your_para)

虽然类方法在调用的时候没有显式声明cls,但实际上类本身是作为隐含参数传入的。这就像实例方法在调用的时候也没有显式声明self,但实际上实例本身是作为隐含参数传入的。

对于静态函数,我们一般把与类无关也与实例无关的函数定义为静态函数。例如入口检查的函数就最好定义成静态函数。

类方法的妙处, 在继承中的作用:

class Fruit(object):
 total = 0 # 这是一个类属性
 @classmethod
 def print_total(cls):
 print('this is the ', cls, '.total:', cls.total, ' and its id: ', id(cls.total)) # cls是类本身,打印类属性total的值
 print('this is the Fruit.total:', Fruit.total, 'and its id: ', id(Fruit.total))
 print("=======================")
 @classmethod
 def set(cls, value):
 cls.total = value
class Apple(Fruit):
 pass
class Orange(Fruit):
 pass
app1 = Apple()
app1.set(10)
app1.print_total()
Apple.print_total()
Fruit.set(2)
app1.print_total()
Fruit.print_total()
"""
output:
this is the <class '__main__.Apple'> .total: 10 and its id: 1355201264
this is the Fruit.total: 0 and its id: 1355200944
=======================
this is the <class '__main__.Apple'> .total: 10 and its id: 1355201264
this is the Fruit.total: 0 and its id: 1355200944
=======================
this is the <class '__main__.Apple'> .total: 10 and its id: 1355201264
this is the Fruit.total: 2 and its id: 1355201008
=======================
this is the <class '__main__.Fruit'> .total: 2 and its id: 1355201008
this is the Fruit.total: 2 and its id: 1355201008
=======================
"""

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对三水点靠木的支持。如果你想了解更多相关内容请查看下面相关链接

Python 相关文章推荐
Python的Django REST框架中的序列化及请求和返回
Apr 11 Python
Python极简代码实现杨辉三角示例代码
Nov 15 Python
pandas如何处理缺失值
Jul 31 Python
python3中替换python2中cmp函数的实现
Aug 20 Python
python中有关时间日期格式转换问题
Dec 25 Python
pytorch+lstm实现的pos示例
Jan 14 Python
Python : turtle色彩控制实例详解
Jan 19 Python
详解python命令提示符窗口下如何运行python脚本
Sep 11 Python
python中spy++的使用超详细教程
Jan 29 Python
用python 绘制茎叶图和复合饼图
Feb 26 Python
Python如何把不同类型数据的json序列化
Apr 30 Python
Python 居然可以在 Excel 中画画你知道吗
Feb 15 Python
对Python 窗体(tkinter)文本编辑器(Text)详解
Oct 11 #Python
详谈Python 窗体(tkinter)表格数据(Treeview)
Oct 11 #Python
Python GUI布局尺寸适配方法
Oct 11 #Python
10 行 Python 代码教你自动发送短信(不想回复工作邮件妙招)
Oct 11 #Python
对Python 窗体(tkinter)树状数据(Treeview)详解
Oct 11 #Python
Django 路由系统URLconf的使用
Oct 11 #Python
Python 中的lambda函数介绍
Oct 10 #Python
You might like
php生成WAP页面
2006/10/09 PHP
PHP实现手机号码中间四位用星号(*)隐藏的自定义函数分享
2014/09/27 PHP
执行iframe中的javascript方法
2008/10/07 Javascript
JavaScript 面向对象的之私有成员和公开成员
2010/05/04 Javascript
jQuery实现form表单reset按钮重置清空表单功能
2012/12/18 Javascript
jQuery下实现等待指定元素加载完毕(可改成纯js版)
2013/07/11 Javascript
jQuery实现用户注册的表单验证示例
2013/08/28 Javascript
Ajax同步与异步传输的示例代码
2013/11/21 Javascript
ES6模块化的import和export用法方法总结
2017/08/08 Javascript
nodejs async异步常用函数总结(推荐)
2017/11/17 NodeJs
IE11下使用canvas.toDataURL报SecurityError错误的解决方法
2017/11/19 Javascript
koa-router路由参数和前端路由的结合详解
2019/05/19 Javascript
JavaScript学习教程之cookie与webstorage
2019/06/23 Javascript
JS实现json数组排序操作实例分析
2019/10/28 Javascript
Vue实现简单计算器案例
2020/02/25 Javascript
[01:37]全新的一集《真视界》——TI7总决赛
2017/09/21 DOTA
python计算圆周长、面积、球体体积并画出圆
2014/04/08 Python
python计算书页码的统计数字问题实例
2014/09/26 Python
tensorflow实现打印ckpt模型保存下的变量名称及变量值
2020/01/04 Python
Python自动化xpath实现自动抢票抢货
2020/09/19 Python
中国跨境电子商务网站:NewFrog
2018/03/10 全球购物
台湾租车首选品牌:IWS艾维士租车
2019/05/03 全球购物
行政助理求职自荐信
2013/10/26 职场文书
音乐系毕业生自荐信
2013/10/27 职场文书
自考生自我评价分享
2014/01/18 职场文书
创先争优制度
2014/01/21 职场文书
师范学院教师自荐书
2014/01/31 职场文书
倡议书格式
2014/04/14 职场文书
2014年师德师风学习材料
2014/05/16 职场文书
电子商务专业毕业生求职信
2014/06/12 职场文书
高二学年自我鉴定范文(2篇)
2014/09/26 职场文书
交通事故委托书范本
2014/09/28 职场文书
补充协议书
2015/01/28 职场文书
税务会计岗位职责
2015/04/02 职场文书
宾馆安全管理制度
2015/08/06 职场文书
vue3使用vue-router的完整步骤记录
2021/06/20 Vue.js