python 使用字符串名调用类以及调用类方法名
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 使用字符串名调用类以及调用类方法名相关的知识,希望对你有一定的参考价值。
在python中,有时调用者仅知道类名和类方法,不负责实际的函数调用,而是将要调用的类名和类方法告诉一个中间函数,由中间函数负责实际调用函数。中间函数需以被告知的字符串调用类和类方法。 在万物皆对象,我们需要将传进来的字符串转化为类对象,这里我们可以使用eval实现。而以字符串形式调用类方法,可以使用内置方法getattr实现,以下是详细例子。
class SayHello(): def say(self): print ‘hello‘ if __name__ == ‘__main__‘: # normal call class method i_s_h = SayHello() i_s_h.say() # use string call class method c_str = eval(‘SayHello‘)() print c_str c_str.say() # direct use class method getattr(c_str,‘say‘)()
以上输出:
hello
<__main__.SayHello instance at 0x0000000002242848>
hello
hello
[Finished in 0.3s]
以上是关于python 使用字符串名调用类以及调用类方法名的主要内容,如果未能解决你的问题,请参考以下文章
python调用父类方法的三种方式(super调用和父类名调用)