在Scala中,使用反射动态调用对象和调用方法的最佳方式是什么?对象对应的方法将被调用,但对象名称是动态已知的。
我能够从这个SO问题动态实例化一个scala类,但是我需要为对象做同样的事情。
下面是一个示例代码:
class CC {
def CC () = {
}
}
object CC {
def getC(name : String) : CC = {
return new CC();
}
}
}
class CD {
def CD () = {
}
}
object CD {
def getC(name : String) : CC = {
return new CD();
}
}
}
现在我有一个基类,它需要调用getC
方法,但对应的对象是动态知道的。那么如何才能达到同样的效果呢?
也是基类,我的疑问是在类的注释中。
class Base {
def Base() = {
}
def createClass(name : String) = {
// need to call the method corresponding to the object depending
// on the string.
//e.g.: if name = "C" call CC.getC("abcd")
// if name = "D" call CD.getC("abcd")
}
}
你仍然可以使用scala运行时反射:
import scala.reflect.runtime.{universe => ru}
val m = ru.runtimeMirror(getClass.getClassLoader)
val ccr = m.staticModule("my.package.name.ObjName") // e.g. "CC" or "CD"
type GetC = {
def getC(name:String): CC
}
val cco = m.reflectModule(ccr).instance.asInstanceOf[GetC]
现在可以改成cco.getC ...