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 strip lstrip rstrip使用方法
Sep 06 Python
Python教程之全局变量用法
Jun 27 Python
Python 详解基本语法_函数_返回值
Jan 22 Python
浅谈终端直接执行py文件,不需要python命令
Jan 23 Python
使用Python实现简单的服务器功能
Aug 25 Python
基于Python中求和函数sum的用法详解
Jun 28 Python
简单了解python关系(比较)运算符
Jul 08 Python
Python类中的魔法方法之 __slots__原理解析
Aug 26 Python
python安装gdal的两种方法
Oct 29 Python
使用Python将Exception异常错误堆栈信息写入日志文件
Apr 08 Python
Python 通过监听端口实现唯一脚本运行方式
May 05 Python
python字典的元素访问实例详解
Jul 21 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实现查询百度google收录情况(示例代码)
2013/08/02 PHP
php数组操作之键名比较与差集、交集赋值的方法
2014/11/10 PHP
php数据库的增删改查 php与javascript之间的交互
2017/08/31 PHP
yii2.0框架数据库操作简单示例【添加,修改,删除,查询,打印等】
2020/04/13 PHP
jQuery 创建Dom元素
2010/05/07 Javascript
js hover 定时器(实例代码)
2013/11/12 Javascript
node.js中的path.delimiter方法使用说明
2014/12/09 Javascript
《JavaScript DOM 编程艺术》读书笔记之DOM基础
2015/01/09 Javascript
JavaScript多图片上传案例
2015/09/28 Javascript
基于JS代码实现导航条弹出式悬浮菜单
2016/06/17 Javascript
jquery 动态增加,减少input表单的简单方法(必看)
2016/10/12 Javascript
vue使用axios跨域请求数据问题详解
2017/10/18 Javascript
不使用 JS 匿名函数理由
2017/11/17 Javascript
解析vue中的$mount
2017/12/21 Javascript
Angular搜索场景中使用rxjs的操作符处理思路
2018/05/30 Javascript
Nuxt升级2.0.0时出现的问题(小结)
2018/10/08 Javascript
JavaScript多种页面刷新方法小结
2019/04/04 Javascript
使用layui+ajax实现简单的菜单权限管理及排序的方法
2019/09/10 Javascript
layui树形菜单动态遍历的例子
2019/09/23 Javascript
ES6的异步操作之promise用法和async函数的具体使用
2019/12/06 Javascript
Vue结合路由配置递归实现菜单栏功能
2020/06/16 Javascript
Python采集腾讯新闻实例
2014/07/10 Python
Python 多核并行计算的示例代码
2017/11/07 Python
对numpy数据写入文件的方法讲解
2018/07/09 Python
解决pip install xxx报错SyntaxError: invalid syntax的问题
2018/11/30 Python
python微信撤回监测代码
2019/04/29 Python
解决Djang2.0.1中的reverse导入失败的问题
2019/08/16 Python
Keras 利用sklearn的ROC-AUC建立评价函数详解
2020/06/15 Python
CSS3——齿轮转动关键代码
2013/05/02 HTML / CSS
自荐书4要点
2014/01/25 职场文书
护士岗位职责
2014/02/16 职场文书
2014卖家双十一活动策划书
2014/09/29 职场文书
机关职员工作检讨书
2014/10/23 职场文书
2015年毕业实习工作总结
2015/05/29 职场文书
2016廉洁教育心得体会
2016/01/20 职场文书
2019新员工试用期转正工作总结范文
2019/08/21 职场文书