-
[Python] cls()언어/파이썬 & 장고 2016. 10. 22. 21:32
@classmethod를 사용할 때, 해당 클래스의 인스턴스 생성자를 호출할 때 cls()를 사용합니다.
class A: def __init__(self, data): print(data) @classmethod def method(cls): print('before') cls('after') A.method() # 결과 # before # after
@classmethod를 사용할 때, 해당 클래스의 인스턴스 생성자를 호출할 때 cls()를 사용합니다.
class A: def __init__(self, data): print(data) @classmethod def method(cls): print('before') cls('after') A.method() # 결과 # before # after |