我有这个:
val vertexIdListPartitions: TrieMap[Long, List[Long]] = TrieMap()
我需要在List(3)
添加vertexIdListPartitions(3)
。
我试着这样做:
vertexIdListPartitions(3)++List(3)
但它不起作用。
请帮帮我。 感谢
答案 0 :(得分:0)
可变集合具有update()
方法。
vertexIdListPartitions.update(3L, List(3)) //res0: Unit = ()
vertexIdListPartitions //res1: TrieMap[Long,List[Long]] = TrieMap(3 -> List(3))