标签: scala
scala中的类Tuple2和Pair之间是否存在差异?
Tuple2
Pair
在我看来,他们做的完全相同。
答案 0 :(得分:13)
是。两者都相同
type Pair[+A, +B] = Tuple2[A, B]
https://github.com/scala/scala/blob/v2.9.2/src/library/scala/Predef.scala#L1第227行