Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在源代码中,我们有elems = toList. 为什么我们需要这两个功能?
elems = toList
黑客攻击数据集
这是大多数集合提供的模式的一部分。在 set 的情况下,没有键,所以elems = toList. 但是,对于 a 之类的东西Map,toList它会返回一个关联列表,elems而它只返回值。
Map
toList
elems
因此,看似冗余的是为其他集合(如MapsIntSet Array和IntMap.
IntSet
Array
IntMap