用实例分析Python中method的参数传递过程


Posted in Python onApril 02, 2015

什么是method?

function就是可以通过名字可以调用的一段代码,我们可以传参数进去,得到返回值。所有的参数都是明确的传递过去的。
method是function与对象的结合。我们调用一个方法的时候,有些参数是隐含的传递过去的。下文会详细介绍。
instancemethod
 

In [5]: class Human(object):
  ...:   def __init__(self, weight):
  ...:     self.weight = weight
  ...:   def get_weight(self):
  ...:     return self.weight
  ...:  
 
In [6]: Human.get_weight
Out[6]: <unbound method Human.get_weight>

这告诉我们get_weight是一个没有被绑定方法,什么叫做未绑定呢?继续看下去。
 

In [7]: Human.get_weight()
---------------------------------------------------------------------------
TypeError                 Traceback (most recent call last)
/home/yao/learn/insight_python/<ipython-input-7-a2b2c5cd2f8d> in <module>()
----> 1 Human.get_weight()
 
TypeError: unbound method get_weight() must be called with Human instance as first argument (got nothing instead)

未绑定的方法必须使用一个Human实例作为第一个参数来调用啊。那我们来试试
 

In [10]: Human.get_weight(Human(45))
Out[10]: 45

果然成功了,但是一般情况下我们习惯这么使用。
 

In [11]: person = Human(45)
 
In [12]: person.get_weight()
Out[12]: 45

这两种方式的结果一模一样。我们看下官方文档是怎么解释这种现象的。
 
When an instance attribute is referenced that isn't a data attribute, its class is searched.
If the name denotes a valid class attribute that is a function object, a method object is
created by packing (pointers to) the instance object and the function object just found together
in an abstract object: this is the method object. When the method object is called with an
argument list, a new argument list is constructed from the instance object and the argument list,
and the function object is called with this new argument list.

原来我们常用的调用方法(person.get_weight())是把调用的实例隐藏的作为一个参数self传递过去了, self 只是一个普通的参数名称,不是关键字。
 

In [13]: person.get_weight
Out[13]: <bound method Human.get_weight of <__main__.Human object at 0x8e13bec>>
 
In [14]: person
Out[14]: <__main__.Human at 0x8e13bec>

我们看到get_weight被绑定在了 person 这个实例对象上。
总结下

  1.     instance method 就是实例对象与函数的结合。
  2.     使用类调用,第一个参数明确的传递过去一个实例。
  3.     使用实例调用,调用的实例被作为第一个参数被隐含的传递过去。

classmethod
 

In [1]: class Human(object):
  ...:   weight = 12
  ...:   @classmethod
  ...:   def get_weight(cls):
  ...:     return cls.weight
 
In [2]: Human.get_weight
Out[2]: <bound method type.get_weight of <class '__main__.Human'>>

我们看到get_weight是一个绑定在 Human 这个类上的method。调用下看看
 

In [3]: Human.get_weight()
Out[3]: 12
In [4]: Human().get_weight()
Out[4]: 12

类和类的实例都能调用 get_weight 而且调用结果完全一样。
我们看到 weight 是属于 Human 类的属性,当然也是 Human 的实例的属性。那传递过去的参数 cls 是类还是实例呢?
 

In [1]: class Human(object):
  ...:   weight = 12
  ...:   @classmethod
  ...:   def get_weight(cls):
  ...:     print cls
 
In [2]: Human.get_weight()
<class '__main__.Human'>
 
In [3]: Human().get_weight()
<class '__main__.Human'>

我们看到传递过去的都是 Human 类,不是 Human 的实例,两种方式调用的结果没有任何区别。cls 只是一个普通的函数参数,调用时被隐含的传递过去。
总结起来

  1.     classmethod 是类对象与函数的结合。
  2.     可以使用类和类的实例调用,但是都是将类作为隐含参数传递过去。
  3.     使用类来调用 classmethod 可以避免将类实例化的开销。

staticmethod
 

In [1]: class Human(object):
  ...:   @staticmethod
  ...:   def add(a, b):
  ...:     return a + b
  ...:   def get_weight(self):
  ...:     return self.add(1, 2)
 
In [2]: Human.add
Out[2]: <function __main__.add>
 
In [3]: Human().add
Out[3]: <function __main__.add>
 
In [4]: Human.add(1, 2)
Out[4]: 3
 
In [5]: Human().add(1, 2)
Out[5]: 3

我们看到 add 在无论是类还是实例上都只是一个普通的函数,并没有绑定在任何一个特定的类或者实例上。可以使用类或者类的实例调用,并且没有任何隐含参数的传入。
 

In [6]: Human().add is Human().add
Out[6]: True
 
In [7]: Human().get_weight is Human().get_weight
Out[7]: False

add 在两个实例上也是同一个对象。instancemethod 就不一样了,每次都会创建一个新的 get_weight 对象。
总结下

  1.     当一个函数逻辑上属于一个类又不依赖与类的属性的时候,可以使用 staticmethod。
  2.     使用 staticmethod 可以避免每次使用的时都会创建一个对象的开销。
  3.     staticmethod 可以使用类和类的实例调用。但是不依赖于类和类的实例的状态。
Python 相关文章推荐
python获取图片颜色信息的方法
Mar 18 Python
Python3字符串学习教程
Aug 20 Python
实现python版本的按任意键继续/退出
Sep 26 Python
python调用百度语音REST API
Aug 30 Python
3行Python代码实现图像照片抠图和换底色的方法
Oct 10 Python
Python 取numpy数组的某几行某几列方法
Oct 24 Python
Python多线程:主线程等待所有子线程结束代码
Apr 25 Python
如何搭建pytorch环境的方法步骤
May 06 Python
解决Python Matplotlib绘图数据点位置错乱问题
May 16 Python
Python通过zookeeper实现分布式服务代码解析
Jul 22 Python
Python3爬虫mitmproxy的安装步骤
Jul 29 Python
零基础学python应该从哪里入手
Aug 11 Python
使用优化器来提升Python程序的执行效率的教程
Apr 02 #Python
使用Python脚本对Linux服务器进行监控的教程
Apr 02 #Python
在Python编程过程中用单元测试法调试代码的介绍
Apr 02 #Python
用Python的Django框架完成视频处理任务的教程
Apr 02 #Python
用map函数来完成Python并行任务的简单示例
Apr 02 #Python
对于Python异常处理慎用“except:pass”建议
Apr 02 #Python
Python的设计模式编程入门指南
Apr 02 #Python
You might like
关于拼配咖啡,你要知道
2021/03/03 咖啡文化
php通过文件头判断格式的方法
2016/05/28 PHP
PHP文件与目录操作示例
2016/12/24 PHP
浅谈Laravel中的三种中间件的作用
2019/10/13 PHP
Open and Print a Word Document
2007/06/15 Javascript
JavaScript 使用技巧精萃(.net html
2009/04/25 Javascript
jquery入门—数据删除与隔行变色以及图片预览
2013/01/07 Javascript
JavaScript forEach()遍历函数使用及介绍
2015/07/08 Javascript
AngularJS中的Directive实现延迟加载
2016/01/25 Javascript
简单实现jquery焦点图
2016/12/12 Javascript
浅谈键盘上回车按钮的js触发事件
2017/02/13 Javascript
bootstrap PrintThis打印插件使用详解
2017/02/20 Javascript
js+html5实现半透明遮罩层弹框效果
2020/08/24 Javascript
微信小程序之swiper滑动面板用法示例
2018/12/04 Javascript
Javascript原生ajax请求代码实例
2020/02/20 Javascript
[02:09]DOTA2辉夜杯 EHOME夺冠举杯现场
2015/12/28 DOTA
Python bsddb模块操作Berkeley DB数据库介绍
2015/04/08 Python
用python实现对比两张图片的不同
2018/02/05 Python
浅析Python装饰器以及装饰器模式
2018/05/28 Python
pytorch实现用Resnet提取特征并保存为txt文件的方法
2019/08/20 Python
Numpy的简单用法小结
2019/08/28 Python
python迭代器常见用法实例分析
2019/11/22 Python
YUV转为jpg图像的实现
2019/12/09 Python
python删除指定列或多列单个或多个内容实例
2020/06/28 Python
Room Mate Hotels美国:西班牙酒店品牌
2018/04/10 全球购物
Nordgreen美国官网:在线购买极简主义斯堪的纳维亚手表
2019/07/24 全球购物
土木工程专业个人求职信
2013/12/05 职场文书
保护动物倡议书
2014/04/15 职场文书
幼儿园亲子活动总结
2014/04/26 职场文书
抵押贷款承诺书
2014/05/30 职场文书
学校食堂食品安全承诺书
2015/04/29 职场文书
2015年幼儿园班务工作总结
2015/05/12 职场文书
成绩单家长意见
2015/06/03 职场文书
教师旷工检讨书
2015/08/15 职场文书
幼儿园大班开学寄语(2016秋季)
2015/12/03 职场文书
详解MindSpore自定义模型损失函数
2021/06/30 Python