- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
这个对我来说似乎有点棘手。前段时间我已经设法用类似的东西覆盖实例的方法:
def my_method(self, attr):
pass
instancemethod = type(self.method_to_overwrite)
self.method_to_overwrite = instancemethod(my_method, self, self.__class__)
这对我来说效果很好;但现在我正在尝试覆盖实例的 __getattribute__()
函数,这对我不起作用,因为该方法似乎是
<type 'method-wrapper'>
有什么办法可以解决这个问题吗?我在 method-wrapper
上找不到任何像样的 Python 文档。
最佳答案
您想在每个实例的基础上覆盖属性查找算法吗?在不知道你为什么要这样做的情况下,我会冒险猜测有一种更简洁的方式来做你需要做的事情。如果你真的需要像 Aaron 所说的那样,你需要在类上安装一个重定向 __getattribute__
处理程序,因为 Python 只在类上查找特殊方法,忽略实例上定义的任何内容。
您还必须格外小心,不要陷入无限递归:
class FunkyAttributeLookup(object):
def __getattribute__(self, key):
try:
# Lookup the per instance function via objects attribute lookup
# to avoid infinite recursion.
getter = object.__getattribute__(self, 'instance_getattribute')
return getter(key)
except AttributeError:
return object.__getattribute__(self, key)
f = FunkyAttributeLookup()
f.instance_getattribute = lambda attr: attr.upper()
print(f.foo) # FOO
此外,如果您要重写实例上的方法,则无需自己实例化方法对象,您可以在生成方法的函数上使用描述符协议(protocol),或者仅柯里化(Currying) self 参数。
#descriptor protocol
self.method_to_overwrite = my_method.__get__(self, type(self))
# or curry
from functools import partial
self.method_to_overwrite = partial(my_method, self)
关于Python - 为实例覆盖 __getattribute__?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1560853/
给定: In [37]: class A: ....: f = 1 ....: In [38]: class B(A): ....: pass ....: In
class Shadow(object): pass class Test(object): a = 1 b = 2 _shadow = Shadow() de
我想在调用特定方法之前调用带有参数的函数的包装方法。所以我想我必须重写 __getattribute__ 方法。 以下是代码示例: def wrapper(func): return func
class test(): name = 'arthur' def __getattribute__(self, value): return super().__getattribu
根据 python 描述符指南 https://docs.python.org/howto/descriptor.html 新样式类中的方法对象是使用描述符实现的,以避免在属性查找中对它们进行特殊封装
这个对我来说似乎有点棘手。前段时间我已经设法用类似的东西覆盖实例的方法: def my_method(self, attr): pass instancemethod = type(self.
考虑以下几点: class A(object): def __init__(self): print 'Hello!' def foo(self): p
我想覆盖对类中一个变量的访问,但正常返回所有其他变量。如何使用 __getattribute__ 完成此操作? 我尝试了以下操作(这也应该说明我正在尝试做的事情)但我得到一个递归错误: class D
我尝试重写数据类中的__getattribute__特殊方法,以获得属性的格式化版本。 @dataclass class _BaseRouteRegistry: VERSION = '1'
我尝试重写数据类中的__getattribute__特殊方法,以获得属性的格式化版本。 @dataclass class _BaseRouteRegistry: VERSION = '1'
我有以下代码: #-*-coding:utf-8-*- class A(object): def __init__(self, x): self.x = x def _
为了更好地理解这个问题,这里有一个例子: class Parent: def __getattribute__(self, attr): print('ha!')
我有一个包含成员对象的类。我想像调用容器类的方法一样调用成员的方法。 以下示例说明了(但在不同的上下文中)我想要做的事情。 假设我们有两个类代表两种不同类型的产品:玩具和鞋子。每个类都有两个方法,比如
我阅读了一些关于 python 的对象属性查找的内容(此处:https://blog.ionelmc.ro/2015/02/09/understanding-python-metaclasses/#o
class B(object): """new style class""" def __getattribute__(self, name): print '__getatt
这是从 Python 2.7.12 文档(3.4.12. 新型类的特殊方法查找¶)中检索到的代码片段: In addition to bypassing any instance attributes
如果这个问题有重复,抱歉,我没有找到它,如果有人找到,我会删除这个问题。 我有这个简单的 python 类: class NothingSpecial: @classmethod
我有以下类(class): class StrLogger(str): def __init__(self, *args): self._log_ = [] s
似乎 __getattribute__ 只有两个参数 (self, name)。 然而,在实际代码中,我拦截的方法实际上是带参数的。 无论如何都可以访问这些参数吗? 谢谢, 查理 最佳答案 __get
Python in a Nutshell 描述: 从类中获取属性时的查找过程,例如cls.name(参见 Why are the lookup procedures for getting an at
我是一名优秀的程序员,十分优秀!