scala> val set = scala.collection.mutable.Set[(Int, Int)]()
set: scala.collection.mutable.Set[(Int, Int)] = Set()
scala> set += (3, 4)
<console>:9: error: type mismatch;
found : Int(3)
required: (Int, Int)
set += (3, 4)
^
scala> set += Tuple2(3, 4)
res5: set.type = Set((3,4))
添加(3, 4)
不起作用 - 为什么?
通常,(3, 4)
也表示具有两个元素的元组。
答案 0 :(得分:20)
问题是它存在于Set
特征方法+(elem1: A, elem2: A, elems: A+)
中,并且编译器对它感到困惑。它实际上认为您尝试将此方法与2个Int
参数一起使用,而不是像预期的那样将其与元组一起使用。
您可以改为使用:set += (3 -> 4)
或set += ((3, 4))