7-8 如何通过实例方法名字的字符串调用方法

Posted 石中玉smulngy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了7-8 如何通过实例方法名字的字符串调用方法相关的知识,希望对你有一定的参考价值。

三个接口:

方法一:

>>> help(getattr)
Help on built-in function getattr in module __builtin__:

getattr(...)
    getattr(object, name[, default]) -> value
    
    Get a named attribute from an object; getattr(x, \'y\') is equivalent to x.y.
    When a default argument is given, it is returned when the attribute doesn\'t
    exist; without it, an exception is raised in that case.
help(getattr)

输出结果:

方法二:

 

>>> from operator import methodcaller
>>> help(methodcaller)
Help on class methodcaller in module operator:

class methodcaller(__builtin__.object)
 |  methodcaller(name, ...) --> methodcaller object
 |  
 |  Return a callable object that calls the given method on its operand.
 |  After f = methodcaller(\'name\'), the call f(r) returns r.name().
 |  After g = methodcaller(\'name\', \'date\', foo=1), the call g(r) returns
 |  r.name(\'date\', foo=1).
 |  
 |  Methods defined here:
 |  
 |  __call__(...)
 |      x.__call__(...) <==> x(...)
 |  
 |  __getattribute__(...)
 |      x.__getattribute__(\'name\') <==> x.name
 |  
 |  ----------------------------------------------------------------------
 |  Data and other attributes defined here:
 |  
 |  __new__ = <built-in method __new__ of type object>
 |      T.__new__(S, ...) -> a new object with type S, a subtype of T
help(methodcaller)

例子:

>>> s = \'abc123abc456\'
>>> s.find(\'abc\',4)
6
>>> strfindabc4 = methodcaller(\'find\',\'abc\',4)  #methodcaller创建一个对象,methodcaller()第一个参数是要调用的函数方法的名字(字符串),其他参数是那个函数方法的参数。
>>> strfindabc4
<operator.methodcaller object at 0x0285ABC0>
>>> strfindabc4(s)      #再将原对象  作为参数传入
6

 

以上是关于7-8 如何通过实例方法名字的字符串调用方法的主要内容,如果未能解决你的问题,请参考以下文章

python类与对象-如何通过实例方法名字的字符串调用方法

python_如何通过实例方法名字调用方法?

-Java基础-方法

-Java基础-方法

-Java基础-方法

IOC 控制反转Android 事件依赖注入 ( 事件依赖注入具体的操作细节 | 创建 事件监听器 对应的 动态代理 | 动态代理的数据准备 | 创建调用处理程序 | 创建动态代理实例对象 )(代码片