Why is it possible to declare variable with same name in the REPL?

≡放荡痞女 提交于 2019-12-17 07:38:16

问题


scala> val hi = "Hello \"e"
hi: String = Hello "e


scala> val hi = "go"
hi: String = go

Within same REPL session why its allowing me to declare variable hi with same name ?

scala> hi
res1: String = go

scala> hi="new"
<console>:8: error: reassignment to val
   hi="new"
     ^

This error i understood we cannot reassign val


回答1:


The interesting design feature of the REPL is that your two definitions are translated to:

object A {
  val greeting = "hi"
}
object B {
  val greeting = "bye"
}

A subsequent usage will import the last definition:

object C {
  import B.greeting
  val message = s"$greeting, Bob."  // your code
}

You can witness the exact wrapping strategy with scala -Xprint:parser:

object $iw extends scala.AnyRef {
  def <init>() = {
    super.<init>();
    ()
  };
  import $line4.$read.$iw.$iw.greeting;
  object $iw extends scala.AnyRef {
    def <init>() = {
      super.<init>();
      ()
    };
    val message = StringContext("", ", Bob.").s(greeting)
  }
}



回答2:


In the first piece of code I believe this is a "feature" of the REPL allowing your to redefine hi. Suppose you are working through building a small piece of code in the REPL then it might be helpful to go back and change a prior definition without rewriting the others to use a different value.

The following code would give an error error: x is already defined as value x when compiling with scalac.

class Foo{
  val x = "foo"
  val x = "foo"
}

In the second piece of code you are trying to reassign a val which cannot be changed. This is what you would expect.



来源:https://stackoverflow.com/questions/22772320/why-is-it-possible-to-declare-variable-with-same-name-in-the-repl

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!