标签: ruby hashmap defaultdict
我有以下例子:
a = Hash.new([]) a[2][1] = 10 a[2] # => [nil, 10] a # => {}
为什么默认哈希没有被修改?怎么没有找到钥匙?为什么我看不到或迭代任何键,但可以通过索引调用它们?