:::和++之间的区别

时间:2013-05-07 08:55:02

标签: list scala collections

对于scala列表,

之间有什么区别
:::

++

来自doc

:::  Adds an element at the beginning of this list.
++  Returns a new list containing the elements from the left hand operand followed by the elements from the right hand operand.

1 个答案:

答案 0 :(得分:1)

:::连接两个列表,例如。 list1 ::: list2

++连接任意两个集合,例如。 list1 ++ list2。请注意,仅适用于scala 2.8。