在Scala中,动态实例化对象并使用反射调用方法的最佳方法是什么?
我想做Scala - 相当于以下Java代码:
Class class = Class.forName("Foo");
Object foo = class.newInstance();
Method method = class.getMethod("hello", null);
method.invoke(foo, null);
在上面的代码中,类名和方法名都是动态传递的。上述Java机制可能可用于Foo
和hello()
,但Scala类型与Java的一对一不匹配。例如,可以为单个对象隐式声明类。 Scala方法也允许各种符号作为其名称。两者都通过名称修改来解决。请参阅Interop Between Java and Scala。
另一个问题似乎是通过解决重载和自动装箱来匹配参数,如Reflection from Scala - Heaven and Hell中所述。
答案 0 :(得分:65)
有一种更简单的方法可以反射地调用方法而无需调用Java反射方法:使用结构类型。
只需将对象引用转换为具有必要方法签名的结构类型,然后调用方法:不需要反射(当然,Scala在下面进行反射,但我们不需要这样做)。
class Foo {
def hello(name: String): String = "Hello there, %s".format(name)
}
object FooMain {
def main(args: Array[String]) {
val foo = Class.forName("Foo").newInstance.asInstanceOf[{ def hello(name: String): String }]
println(foo.hello("Walter")) // prints "Hello there, Walter"
}
}
答案 1 :(得分:12)
VonC和Walter Chang的答案非常好,所以我只补充一个Scala 2.8实验功能。事实上,我甚至不打算打扮它,我只是复制scaladoc。
object Invocation
extends AnyRef
反射的更方便的语法 调用。用法示例:
class Obj { private def foo(x: Int, y: String): Long = x + y.length }
你可以反思地称之为 两种方式:
import scala.reflect.Invocation._
(new Obj) o 'foo(5, "abc") // the 'o' method returns Any
val x: Long = (new Obj) oo 'foo(5, "abc") // the 'oo' method casts to expected type.
如果你打电话给oo 方法,不要给出类型 推论者足够的帮助,它将最多 可能推断没什么,这会 导致ClassCastException。
作者Paul Phillips
答案 2 :(得分:6)
实例化部分可以使用Manifest:请参阅此SO answer
Scala中的实验性功能称为清单,它是一种绕过类型擦除的Java约束的方法
class Test[T](implicit m : Manifest[T]) {
val testVal = m.erasure.newInstance().asInstanceOf[T]
}
使用此版本,您仍然可以写
class Foo
val t = new Test[Foo]
但是,如果没有no-arg构造函数可用,则会得到运行时异常而不是静态类型错误
scala> new Test[Set[String]]
java.lang.InstantiationException: scala.collection.immutable.Set
at java.lang.Class.newInstance0(Class.java:340)
因此真正的类型安全解决方案是使用Factory。
注意:正如this thread中所述,Manifest仍然存在,但是现在“仅用于将类型的擦除作为Class实例进行访问。”
现在唯一显示的是在调用站点删除参数的静态类型(与
getClass
相反,它可以删除动态类型)。
然后你可以通过反思得到一个方法:
classOf[ClassName].getMethod("main", classOf[Array[String]])
并调用它
scala> class A {
| def foo_=(foo: Boolean) = "bar"
| }
defined class A
scala>val a = new A
a: A = A@1f854bd
scala>a.getClass.getMethod(decode("foo_="),
classOf[Boolean]).invoke(a, java.lang.Boolean.TRUE)
res15: java.lang.Object = bar
答案 3 :(得分:6)
如果您需要调用Scala 2.10对象(不是类)的方法,并且您将方法和对象的名称设置为String
,则可以这样做:
package com.example.mytest
import scala.reflect.runtime.universe
class MyTest
object MyTest {
def target(i: Int) = println(i)
def invoker(objectName: String, methodName: String, arg: Any) = {
val runtimeMirror = universe.runtimeMirror(getClass.getClassLoader)
val moduleSymbol = runtimeMirror.moduleSymbol(
Class.forName(objectName))
val targetMethod = moduleSymbol.typeSignature
.members
.filter(x => x.isMethod && x.name.toString == methodName)
.head
.asMethod
runtimeMirror.reflect(runtimeMirror.reflectModule(moduleSymbol).instance)
.reflectMethod(targetMethod)(arg)
}
def main(args: Array[String]): Unit = {
invoker("com.example.mytest.MyTest$", "target", 5)
}
}
这会将5
打印到标准输出。
Scala Documentation中的详细信息。
答案 4 :(得分:4)
从@ nedim的回答开始,这是基础的完整答案, 主要区别在于下面我们实例化天真类。此代码不处理多个构造函数的情况,并不是完整的答案。
import scala.reflect.runtime.universe
case class Case(foo: Int) {
println("Case Case Instantiated")
}
class Class {
println("Class Instantiated")
}
object Inst {
def apply(className: String, arg: Any) = {
val runtimeMirror: universe.Mirror = universe.runtimeMirror(getClass.getClassLoader)
val classSymbol: universe.ClassSymbol = runtimeMirror.classSymbol(Class.forName(className))
val classMirror: universe.ClassMirror = runtimeMirror.reflectClass(classSymbol)
if (classSymbol.companion.toString() == "<none>") // TODO: use nicer method "hiding" in the api?
{
println(s"Info: $className has no companion object")
val constructors = classSymbol.typeSignature.members.filter(_.isConstructor).toList
if (constructors.length > 1) {
println(s"Info: $className has several constructors")
}
else {
val constructorMirror = classMirror.reflectConstructor(constructors.head.asMethod) // we can reuse it
constructorMirror()
}
}
else
{
val companionSymbol = classSymbol.companion
println(s"Info: $className has companion object $companionSymbol")
// TBD
}
}
}
object app extends App {
val c = Inst("Class", "")
val cc = Inst("Case", "")
}
这是一个可以编译它的build.sbt
:
lazy val reflection = (project in file("."))
.settings(
scalaVersion := "2.11.7",
libraryDependencies ++= Seq(
"org.scala-lang" % "scala-compiler" % scalaVersion.value % "provided",
"org.scala-lang" % "scala-library" % scalaVersion.value % "provided"
)
)