我正在尝试解释Scala中的字符串来定义类和方法。我在以下代码中使用了http://scala-programming-language.1934581.n4.nabble.com/Compiling-a-Scala-Snippet-at-run-time-td2000704.html中的示例:
import scala.tools.nsc.{Interpreter,Settings}
var i = new Interpreter(new Settings(str => println(str)))
i.interpret("class Test { def hello = \"Hello World\"}")
它有效,但不知何故,解释结果不会发生在全局命名空间中:
new Test # => <console>:5: error: not found: type Test
因此:如何执行解释器语句以便在全局范围内定义结果?我目前正在使用scala2.7.7final,并且无法将解释器更改为2.8。
感谢您的帮助
的Matthias
答案 0 :(得分:6)
我认为当您从解释器到正在运行的应用程序执行步骤时,您无法避免使用反射:
scala> var res = Array[AnyRef](null)
scala> i.bind("result", "Array[AnyRef]", res)
scala> i.interpret("result(0) = new Test")
scala> res
res11: Array[AnyRef] = Array(Test@2a871dcc)
你仍然可以掌握类对象并自己实例化:
scala> i.interpret("result(0) = classOf[Test]")
scala> res(0).asInstanceOf[Class[_]].getConstructors()(0).newInstance()
res24: Any = Test@28bc917c
答案 1 :(得分:1)
你不能,因为Scala在编译时不能静态地知道运行时调用会创建一个类Test
。