在Scala的构造函数上重新分配var参数

时间:2012-04-02 17:14:11

标签: scala parameters constructor


object ReassignTest extends App {
  class X(var i : Int)

  def x = new X(10)
  x.i = 20  // this line compiles

  println(x.i)  // this prints out 10 instead of 20, why?
}

那么我将如何为参数i

创建一个setter

1 个答案:

答案 0 :(得分:13)

您将x定义为每次“调用”时都会返回新X的方法。

def x = new X(10) //define a function 'x' which returns a new 'X'
x.i = 20  //create a new X and set i to 20

println(x.i) //create a new X and print the value of i (10)

x定义为值,而行为将如您所愿

val x = new X(10) //define a value 'x' which is equal to a new 'X'
x.i = 20  //set 'i' to be to 20 on the value 'x' defined above 

println(x.i) //print the current value of the variable i defined on the value 'x'