바인딩되지 않은 메서드를 동적으로 바인딩
Python에서는 바인딩되지 않은 메서드를 호출하지 않고 인스턴스에 바인딩해야 하는 상황에 자주 직면합니다. 이는 동적 GUI 생성 또는 구조화된 방식으로 이벤트 처리와 같은 다양한 시나리오에서 귀중한 기술이 될 수 있습니다.
프로그램 폭발 문제
다음 코드를 고려해보세요. snippet:
<code class="python">class MyWidget(wx.Window): buttons = [ ("OK", OnOK), ("Cancel", OnCancel) ] def setup(self): for text, handler in MyWidget.buttons: b = wx.Button(parent, label=text).bind(wx.EVT_BUTTON, handler)</code>
여기서 문제는 핸들러가 바인딩되지 않은 메서드를 나타내므로 프로그램이 오류로 인해 충돌을 일으킨다는 것입니다. 이 문제를 해결하려면 바인딩되지 않은 메서드를 MyWidget의 특정 인스턴스에 바인딩하는 방법이 필요합니다.
설명자의 힘
Python의 메서드도 설명자입니다. 동적으로 바인딩하는 방법입니다. 바인딩되지 않은 메서드에서 특별한 __get__ 메서드를 호출하면 바인딩된 메서드를 얻을 수 있습니다.
<code class="python">bound_handler = handler.__get__(self, MyWidget)</code>
바운드 메서드를 클래스 수준 속성에 할당하면 이를 인스턴스에 효과적으로 바인딩할 수 있습니다.
<code class="python">setattr(self, handler.__name__, bound_handler)</code>
재사용 가능한 바인딩 함수
이 기술을 사용하면 바인딩되지 않은 메서드를 바인딩하는 재사용 가능한 함수를 만들 수 있습니다.
<code class="python">def bind(instance, func, as_name=None): """ Bind the function *func* to *instance*, with either provided name *as_name* or the existing name of *func*. The provided *func* should accept the instance as the first argument, i.e. "self". """ if as_name is None: as_name = func.__name__ bound_method = func.__get__(instance, instance.__class__) setattr(instance, as_name, bound_method) return bound_method</code>
이 함수를 사용하면 , 이제 다음과 같이 바인딩되지 않은 메서드를 바인딩할 수 있습니다.
<code class="python">bind(something, double) something.double() # returns 42</code>
위 내용은 Python에서 바인딩되지 않은 메서드를 어떻게 동적으로 바인딩할 수 있나요?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!