Python classmethod 장식기 원리 및 용법 해석
1717 단어 Pythonclassmethod장식기
classmethod(function)
Return a class method for function.
A class method receives the class as implicit first argument, just like an instance method receives the instance. To declare a class method, use this idiom:
class C:
@classmethod
def f(cls, arg1, arg2, ...): ...
The @classmethod form is a function decorator C see the description of function definitions in Function definitions for details.
It can be called either on the class (such as C.f()) or on an instance (such as C().f()). The instance is ignored except for its class. If a class method is called for a derived class, the derived class object is passed as the implied first argument.
Class methods are different than C++ or Java static methods. If you want those, see staticmethod() in this section.
표기 방법을 유형으로 하는 장식기
설명:
1. classmethod는 하나의 방법을 종류로 표시하는 데 사용되는 장식기 함수이다
2. 클래스 방법의 첫 번째 매개 변수는 클래스 대상 매개 변수입니다. 방법이 호출될 때 클래스 대상을 자동으로 전송합니다. 매개 변수 이름은cls로 약정됩니다.
3. 만약 하나의 방법이 클래스 방법으로 표시된다면, 이 방법은 클래스 대상에 호출될 수도 있고, 클래스의 실례 대상에 호출될 수도 있다(예를 들어 C().f())
>>> class C:
@classmethod
def f(cls,arg1):
print(cls)
print(arg1)
>>> C.f(' ')
<class '__main__.C'>
>>> c = C()
>>> c.f(' ')
<class '__main__.C'>
4. 클래스가 계승된 후, 하위 클래스도 상위 클래스의 클래스 방법을 호출할 수 있지만, 첫 번째 매개 변수는 하위 클래스의 클래스 대상입니다.
>>> class D(C):
pass
>>> D.f(" ")
<class '__main__.D'>
이상은 본문의 전체 내용입니다. 여러분의 학습에 도움이 되고 저희를 많이 응원해 주십시오.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python의 None과 NULL의 차이점 상세 정보그래서 대상 = 속성 + 방법 (사실 방법도 하나의 속성, 데이터 속성과 구별되는 호출 가능한 속성 같은 속성과 방법을 가진 대상을 클래스, 즉 Classl로 분류할 수 있다.클래스는 하나의 청사진과 같아서 하나의 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.