标签: scala
我的scala代码有什么问题吗?
val arr = new ArrayBuffer[Tuple2] val t = (1, 2) arr.append(t)
我认为我的代码是正确的,但编译器说:
type mismatch, expected:Tuple2, actual:(int, int)
我想知道Tuple2和(int, int)之间有什么区别?
Tuple2
(int, int)
答案 0 :(得分:5)
Tuple2是一个类型构造函数。您想要Tuple2[Int, Int]。
Tuple2[Int, Int]