Python staticmethod 장식기 기반 정적 표시 방법

영문 문서:
staticmethod(function)
Return a static method for function.
A static method does not receive an implicit first argument.
The @staticmethod 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.
표시 방법이 정적 방법인 장식기
설명:
  1. 클래스 중의 일반적인 방법은 실제로 클래스에 직접 호출될 수도 있고 클래스의 실례 대상에 호출될 수도 있지만 실례 대상에 호출될 때 방법은 적어도 하나의 매개 변수가 있어야 하며 호출할 때 실례 대상 자체를 첫 번째 매개 변수로 전달할 수 있다

>>> class Student(object):
  def __init__(self,name):
    self.name = name
  def sayHello(lang):
    print(lang)
    if lang == 'en':
      print('Welcome!')
    else:
      print(' !')
 
  
>>> Student.sayHello
<function Student.sayHello at 0x02AC7810>
>>> a = Student('Bob')
>>> a.sayHello
<bound method Student.sayHello of <__main__.Student object at 0x02AD03F0>>
>>> Student.sayHello('en') #  , 'en' lang 
en
Welcome!

>>> a.sayHello() #  , lang , 
<__main__.Student object at 0x02AD03F0>
 !
  >>> a.sayHello('en')  Traceback (most recent call last):  File "<pyshell#7>", line 1, in <module>  a.sayHello('en')  TypeError: sayHello() takes 1 positional argument but 2 were given
  2. staticmethod 함수 기능은 하나의 방법을 클래스로 정의하는 정적 방법이다. 정확한 방법은 @staticmethod 장식기를 사용하면 실례 대상이 호출될 때 실례 대상 자체를 정적 방법의 첫 번째 매개 변수로 전송하지 않는다.

#  
>>> class Student(object):
  def __init__(self,name):
    self.name = name
  @staticmethod
  def sayHello(lang):
    print(lang)
    if lang == 'en':
      print('Welcome!')
    else:
      print(' !')

      
>>> Student.sayHello('en') # ,'en' lang 
en
Welcome!

>>> b = Student('Kim') # , 
>>> b.sayHello()
Traceback (most recent call last):
 File "<pyshell#71>", line 1, in <module>
  b.sayHello()
TypeError: sayHello() missing 1 required positional argument: 'lang'

>>> b.sayHello('zh') # ,'zh' lang 
zh
 !
이상은 본문의 전체 내용입니다. 여러분의 학습에 도움이 되고 저희를 많이 응원해 주십시오.

좋은 웹페이지 즐겨찾기