class CLanguage: # 定义__call__方法 def __call__(self,name,add): print("调用__call__()方法",name,add) clangs = CLanguage() clangs("C语言中文网","http://task.lmcjl.com")程序执行结果为:
调用__call__()方法 C语言中文网 http://task.lmcjl.com
可以看到,通过在 CLanguage 类中实现 __call__() 方法,使的 clangs 实例对象变为了可调用对象。 对于可调用对象,实际上“名称()”可以理解为是“名称.__call__()”的简写。仍以上面程序中定义的 clangs 实例对象为例,其最后一行代码还可以改写为如下形式:clangs.__call__("C语言中文网","http://task.lmcjl.com")运行程序会发现,其运行结果和之前完全相同。
def say(): print("Python教程:http://task.lmcjl.com/python") say() say.__call__()程序执行结果为:
Python教程:http://task.lmcjl.com/python
Python教程:http://task.lmcjl.com/python
class CLanguage: def __init__ (self): self.name = "C语言中文网" self.add = "http://task.lmcjl.com" def say(self): print("我正在学Python") clangs = CLanguage() if hasattr(clangs,"name"): print(hasattr(clangs.name,"__call__")) print("**********") if hasattr(clangs,"say"): print(hasattr(clangs.say,"__call__"))程序执行结果为:
False
**********
True
本文链接:http://task.lmcjl.com/news/7335.html