在for循环中赋值var arraybuffer:“重新分配给val”

时间:2013-09-26 12:05:16

标签: scala for-loop

正如标题中所述,我无法在for Arraybuffer(Arraybuffer(Int,Int),Int)中重新分配loop类型的变量:

var ab1 = ArrayBuffer(le4: _*)
var ab2 = ab1 map (ligne => (ArrayBuffer(ligne._1: _*), ligne._2))
println("ab:" + ab2)

for {
    i <- 1 to ab2.length
    j <- 0 to i
} {
    ab2(i)._1(j)._2 = j match {
        case 0 =>  ab2(i - 1)._1(0)._2 + ab2(i)._1(j)._1
        case i =>  ab2(i - 1)._1(j - 1)._2 + ab2(i)._1(j)._1
        case _ =>  ab2(i - 1)._1(j)._2 + ab2(i - 1)._1(j - 1)._1 + ab2(i)._1(j)._1
    }
}

关键点是ab2被声明为var但是其中Int的更改被拒绝。为什么呢?

1 个答案:

答案 0 :(得分:6)

varmutable对象之间存在差异。

  • var可以随意重新分配其值
  • mutable对象可以重新分配其字段。就像其中有var s的对象一样

您正尝试在_2内设置元组的ab2字段;元组是不可变的,这就是它导致编译器错误的原因。

重新考虑您用于此操作的数据结构。 collection.mutable.Map可能更好,或者其他任何具有update方法的方法都允许您更改其中的值。