Python staticmethod 장식기 기반 정적 표시 방법
2583 단어 Pythonstaticmethod장식기
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
!
이상은 본문의 전체 내용입니다. 여러분의 학습에 도움이 되고 저희를 많이 응원해 주십시오.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python의 None과 NULL의 차이점 상세 정보그래서 대상 = 속성 + 방법 (사실 방법도 하나의 속성, 데이터 속성과 구별되는 호출 가능한 속성 같은 속성과 방법을 가진 대상을 클래스, 즉 Classl로 분류할 수 있다.클래스는 하나의 청사진과 같아서 하나의 ...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.