如何将Tuple2附加到ArrayBuffer?

时间:2015-03-17 08:42:50

标签: scala

我的scala代码有什么问题吗?

val arr = new ArrayBuffer[Tuple2]
val t = (1, 2)
arr.append(t)

我认为我的代码是正确的,但编译器说:

type mismatch, expected:Tuple2, actual:(int, int)

我想知道Tuple2(int, int)之间有什么区别?

1 个答案:

答案 0 :(得分:5)

Tuple2是一个类型构造函数。您想要Tuple2[Int, Int]