클래스 데코레이터 - __call__, __init__
http://coreapython.hosting.paran.com/tiphack/Python%20Decorators%20Don't%20Have%20to%20be%20(that)%20Scary%20-%20Siafoo.htm # __init__ 과 __call__ 의 차이 class foo:def __init__(self, a, b, c):self.a = aself.b = bself.c = c x = foo(1, 2, 3) # __init__ class goo:def __call__(self, a, b, c):self.a = aself.b = bself.c = cx = goo()x(1, 2, 3) # __call__ # 인스턴스 생성할 때 불리는 __init__, 인스턴스 변수를 실행할 때 불리는 __cal..
Python
2012. 5. 20. 22:24