猿问
回到首页
个人中心
反馈问题
注册登录
下载APP
首页
课程
实战
体系课
手记
专栏
慕课教程
向现有对象实例添加方法
我读过,可以在Python中向现有对象(即不在类定义中)添加方法。
我了解这样做并不总是一件好事。但是怎么可能呢?
素胚勾勒不出你
浏览 179
回答 4
4回答
江户川乱折腾
在Python中,函数和绑定方法之间存在区别。>>> def foo():... print "foo"...>>> class A:... def bar( self ):... print "bar"...>>> a = A()>>> foo<function foo at 0x00A98D70>>>> a.bar<bound method A.bar of <__main__.A instance at 0x00A9BC88>>>>>绑定方法已“绑定”(描述性强)到一个实例,并且无论何时调用该方法,该实例都将作为第一个参数传递。但是,作为类(而不是实例)的属性的可调用对象仍未绑定,因此您可以在需要时随时修改类定义:>>> def fooFighters( self ):... print "fooFighters"...>>> A.fooFighters = fooFighters>>> a2 = A()>>> a2.fooFighters<bound method A.fooFighters of <__main__.A instance at 0x00A9BEB8>>>>> a2.fooFighters()fooFighters先前定义的实例也会被更新(只要它们本身没有覆盖属性):>>> a.fooFighters()fooFighters当您要将方法附加到单个实例时,就会出现问题:>>> def barFighters( self ):... print "barFighters"...>>> a.barFighters = barFighters>>> a.barFighters()Traceback (most recent call last): File "<stdin>", line 1, in <module>TypeError: barFighters() takes exactly 1 argument (0 given)将函数直接附加到实例时,该函数不会自动绑定:>>> a.barFighters<function barFighters at 0x00A98EF0>要绑定它,我们可以在类型模块中使用MethodType函数:>>> import types>>> a.barFighters = types.MethodType( barFighters, a )>>> a.barFighters<bound method ?.barFighters of <__main__.A instance at 0x00A9BC88>>>>> a.barFighters()barFighters这次,该类的其他实例没有受到影响:>>> a2.barFighters()Traceback (most recent call last): File "<stdin>", line 1, in <module>AttributeError: A instance has no attribute 'barFighters'通过阅读有关描述符和元类 编程的信息,可以找到更多信息。
0
0
0
打开App,查看更多内容
随时随地看视频
慕课网APP
相关分类
Python
继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续