python의 설명자 (descriptor), 장식기 (property) 로 인한 무한 귀속 문제 공유
# coding: utf-8
class A(object):
@property
def _value(self):
# raise AttributeError("test")
return {"v": "This is a test."}
def __getattr__(self, key):
print "__getattr__:", key
return self._value[key]
if __name__ == '__main__':
a = A()
print a.v
실행 후 정확한 결과를 얻을 수 있다
__getattr__: v
This is a test.
하면, 만약, 만약...
# raise AttributeError("test")
이 줄의 주석을 없애면 바로value 방법에서 AttributeError 이상을 던지면 일이 좀 이상해집니다.프로그램이 실행될 때 이상을 던지지 않고 무한 귀속에 들어갑니다.
File "attr_test.py", line 12, in __getattr__
return self._value[key]
File "attr_test.py", line 12, in __getattr__
return self._value[key]
RuntimeError: maximum recursion depth exceeded while calling a Python object
여러모로 찾아보니property 장식기의 문제이고property는 실제로descriptor입니다.python doc에서 다음과 같은 텍스트를 볼 수 있습니다.
object.__get__(self, instance, owner)
Called to get the attribute of the owner class (class attribute access) or of an instance of that class (instance attribute access). owner is always the owner class, while instance is the instance that the attribute was accessed through, or None when the attribute is accessed through the owner. This method should return the (computed) attribute value or raise an AttributeError exception.
이렇게 하면 사용자가 액세스할 수 있습니다.value에서 AttributeError를 던져 호출getattr__방법을 찾아서 가져오세요.이렇게 하면 프로그램은 무한귀속이 된다.
이 문제는 보기에는 복잡하지 않지만, 당신의value 방법은 은밀하게 AttributeError를 던지면 디버깅이 어려워집니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.