Python classmethod 장식기 원리 및 용법 해석

영문 문서:
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'>
 
이상은 본문의 전체 내용입니다. 여러분의 학습에 도움이 되고 저희를 많이 응원해 주십시오.

좋은 웹페이지 즐겨찾기