在Python中,您可以使用字典作为dict.fromkeys()
的第一个参数,例如:
In [1]: d = {'a': 1, 'b': 2}
In [2]: dict.fromkeys(d)
Out[2]: {'a': None, 'b': None}
我尝试用类似dict的对象做同样的事情,但总是引发KeyError
,例如:
In [1]: class SemiDict:
...: def __init__(self):
...: self.d = {}
...:
...: def __getitem__(self, key):
...: return self.d[key]
...:
...: def __setitem__(self, key, value):
...: self.d[key] = value
...:
...:
In [2]: sd = SemiDict()
In [3]: sd['a'] = 1
In [4]: dict.fromkeys(sd)
---------------------------------------------------------------------------
KeyError Traceback (most recent call last)
C:\bin\Console2\<ipython console> in <module>()
C:\bin\Console2\<ipython console> in __getitem__(self, key)
KeyError: 0
这到底发生了什么?除了使用dict.fromkeys(sd.d)
之类的内容之外,还能解决吗?
答案 0 :(得分:6)
要创建dict,fromkeys
会遍历其参数。所以它必须是一个迭代器。使其有效的一种方法是向__iter__
添加dict
方法,例如:
def __iter__(self):
return iter(self.d)
答案 1 :(得分:1)
SemiDict
的实例不是序列。我想最明显的解决方案是继承dict
,你为什么不这样做呢?