为什么对数组使用小括号来访问数组中的元素?

在Scala中一切都是对象,数组也是对象。
()运算符会调用t实例中的apply方法。
使用 ()来进行赋值时,会调用实例t的update方法。

package hgsoho.com

class TT {
  private val x : Int = 1

  def apply(m:Int) : Int = {
     println("call apply...")
     printf("x:%d m:%d\n",this.x,m)

     this.x + m
  }

  def update(n:Int,m:Int) {
    println("call update...")
    printf("n:%d m:%d\n",n,m)
  }

}

object ApplyDemo {

  def main(args:Array[String]) {
    var t = new TT()
    println(t(1))
    t(1) = 2
  }

}

输出结果:

call apply...
x:1 m:1
2
call update...
n:1 m:2

你可能感兴趣的:(Scala)