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.
具体来说,我得到“此 ( ) 标记SortedMap<Vector<String>, int>之后的预期尺寸”。int帮助!
SortedMap<Vector<String>, int>
int
不,这是不可能的。改为使用Integer。自动装箱负责其余的工作(即,在大多数情况下,您可以像实际使用过一样进行编程,int因为 Java 会Integer自动为您转换)。
Integer
康拉德是正确的。或者,您可以使用 trove 类 TObjectIntHashMap 将对象映射到原始整数。