class Car : price = 100000 #定义类属性 def __init__ ( self , c ): self . color = c #定义实例属性 print ( "__init__" ) def __call__ ( self ): print ( "__call__" ) c = Car ( 4 ) c () # __call__ 【转自:武汉网站建设公司
price = 100000 #定义类属性
def __init__(self, c):
self.color = c #定义实例属性
print("__init__")
def __call__(self):
print("__call__")
c = Car(4)
c() # __call__