在我输入的控制台上
>>> class S(str): pass
...
>>> a = 'hello'
>>> b = S('hello')
>>> d = {a:a, b:b}
>>> d
{'hello': 'hello'}
>>> type(d[a])
<class '__main__.S'>
>>> type(d[b])
<class '__main__.S'>
起初我以为d
只保留一对的原因是因为hash(a)
和hash(b)
返回相同的值,所以我尝试了:
>>> class A(object):
... def __hash__(self):
... return 0
...
>>> class B(object):
... def __hash__(self):
... return 0
...
>>> d = {A():A(),B():B()}
>>> d
{<__main__.A object at 0x101808b90>: <__main__.A object at 0x101808b10>, <__main__.B object at 0x101808d10>: <__main__.B object at 0x101808cd0>}
现在我很困惑。为什么在第一个代码清单中d
只保留了一对,但在第二个清单d
中,尽管具有相同的哈希值,两个键都被保留了?