How can I override class attribute access in python?(如何在 python 中覆盖类属性访问?)
问题描述
如何在 python 中覆盖类属性访问?
How can I override class attribute access in python?
附:有没有办法单独保留对类属性的常规访问,但在缺少属性时调用更具体的异常?
P.S. Is there a way to leave regular access to class attributes alone but calling a more specific exception on missing attribute?
推荐答案
__getattr__
属性在实例/类/父类上不存在时调用魔术方法.您可以使用它为缺少的属性引发特殊异常:
The __getattr__
magic method is called when the attribute doesn't exist on the instance / class / parent classes. You'd use it to raise a special exception for a missing attribute:
class Foo(object):
def __getattr__(self, attr):
# only called when self.attr doesn't exist
raise MyCustonException(attr)
如果要自定义访问类属性,需要在元类/类型上定义__getattr__
:
If you want to customize access to class attributes, you need to define __getattr__
on the metaclass / type:
class BooType(type):
def __getattr__(self, attr):
print attr
return attr
class Boo(object):
__metaclass__ = BooType
boo = Boo()
Boo.asd # prints asd
boo.asd # raises an AttributeError like normal
如果您想自定义 all 属性访问,请使用 __getattribute__
魔术方法.
If you want to customize all attribute access, use the __getattribute__
magic method.
这篇关于如何在 python 中覆盖类属性访问?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 python 中覆盖类属性访问?
基础教程推荐
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 筛选NumPy数组 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01