码迷,mamicode.com
首页 > 编程语言 > 详细

Python类__call__()方法

时间:2019-04-24 22:12:56      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:this   定义   --   创建   elf   python类   his   __init__   print   

在python中,创建类型的时候定义了__call__()方法,那这个类型创建出来的实例就是可调用的。例def如:

class A(object):

  def __init__(self,name,age):

    self.name=name

    self.age=age

  def __call__(self):

    print("this is __call__ method")

a=A(‘gt‘,17)

a()------>this is __call__ method

Python类__call__()方法

标签:this   定义   --   创建   elf   python类   his   __init__   print   

原文地址:https://www.cnblogs.com/gtsnow/p/10765219.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!