[小知识]Python中__call__方法 @ Python

python中的__call__方法可以把class当做函数调用。例程如下:

#coding=utf-8

class A(object):

    def __init__(self, x):
        self.x = x

    def __call__(self, y):
        return self.x * y

C = A(10)
#C这个instance可以当做函数来调用
print C(5)
# 50

 

你可能感兴趣的:([小知识]Python中__call__方法 @ Python)