5

我正在学习 Python,并且试图更好地理解描述符。当我查看这本 Python 在线书籍: http: //www.cafepy.com/article/python_attributes_and_methods/ch01s05.html时,它说:

  1. 如果 attrname 是 objectname 的特殊(即 Python 提供的)属性,则返回它。

我不明白 Python 提供的含义。有人可以给我一个 Python 提供的属性的示例,该属性优先于通常的解析顺序吗?

注意:我只对新式类感兴趣(据我所知,描述符甚至不适用于旧式)。

4

2 回答 2

1

__class__, 例如:

>>> class Test(object):
    __dict__ = {'__class__' : "dict of Test"}
    def __init__(self):
        self.__dict__['__class__'] = "dict of test"


>>> test = Test()
>>> test.__class__
<class '__main__.Test'>
>>> test.__dict__
{'__class__': 'dict of test'}
>>> Test.__dict__
dict_proxy({'__dict__': {'__class__': 'dict of test'}, '__module__': '__main__', '__weakref__': <attribute '__weakref__' of 'Test' objects>, '__doc__': None, '__init__': <function __init__ at 0x02BD2770>})
>>> 

等效于旧式类:

>>> class Test:
        pass

>>> Test.__dict__["__class__"] = "spam"
>>> test = Test()
>>> test.__class__
<class __main__.Test at 0x02BD1110>
>>> test.__dict__ = {'__class__': "foo"}
>>> test.__class__
<class __main__.Test at 0x02BD1110>

尽管

>>> test.__dict__ = {'__lolcat__': "bar"}
>>> test.__lolcat__
'bar'

根据对象的类型,还有更多特殊的属性名称。例如,函数:

>>> def test():pass

>>> dir(test)
['__call__', '__class__', '__closure__', '__code__', '__defaults__', '__delattr__', '__dict__', '__doc__', '__format__', '__get__', '__getattribute__', '__globals__', '__hash__', '__init__', '__module__', '__name__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', 'func_closure', 'func_code', 'func_defaults', 'func_dict', 'func_doc', 'func_globals', 'func_name']
>>> test.func_closure
>>> test.__dict__['func_closure']='roflcopter'
>>> test.func_closure
>>> test.__dict__['foo']='bar'
>>> test.foo
'bar'

有关概述,请参见http://docs.python.org/reference/datamodel.html

于 2012-05-10T15:00:53.957 回答
0

如您所料,步骤 1 完全错误且不存在。

于 2012-10-05T23:13:00.470 回答