我怎样才能在斯卡拉没有参数创建一个案例类与构造函数参数的实例?(How can I create a

2019-07-04 21:33发布

我正在做的Scala应用程序,将通过反射字段值。 该工程确定。

然而,为了设置字段值,我需要一个创建的实例。 如果我有一个空的构造函数的类,我可以classOf [人] .getConstructors很容易地做到这一点....

然而,当我尝试用一​​个案例类与非空的构造这样它不工作。 我把所有的字段名称和它的价值,以及我需要创建的对象类型。 我可以实例案例类不知何故与我有什么?

我没有的唯一事情就是从案例类构造函数或方法不带参数,然后通过反射设置值来创建此参数的名称。

我们去的例子。

我有以下

case class Person(name : String, age : Int)
class Dog(name : String) {
    def this() = {
        name = "Tony"
    }
}

class Reflector[O](obj : O) {

    def setValue[F](propName : String, value : F) = ...

    def getValue(propName : String) = ...
}

//This works
val dog = classOf[Dog].newInstance()
new Reflector(dog).setValue("name", "Doggy")

//This doesn't
val person = classOf[Person].newInstance //Doesn't work

val ctor = classOf[Person].getConstructors()(0)
val ctor.newInstance(parameters) //I have the property names and values, but I don't know 
// which of them is for each parameter, nor I name the name of the constructor parameters

Answer 1:

此案类应该有默认指定参数时,让你可以Person() ; 在没有默认arg的,提供了名称可能为空(或应该)打了一个要求(名字!= NULL)。

可替代地,使用反射来找出哪个PARAMS具有默认值,然后供给空值或零的其余部分。

import reflect._
import scala.reflect.runtime.{ currentMirror => cm }
import scala.reflect.runtime.universe._

// case class instance with default args

// Persons entering this site must be 18 or older, so assume that
case class Person(name: String, age: Int = 18) {
  require(age >= 18)
}

object Test extends App {

  // Person may have some default args, or not.
  // normally, must Person(name = "Guy")
  // we will Person(null, 18)
  def newCase[A]()(implicit t: ClassTag[A]): A = {
    val claas = cm classSymbol t.runtimeClass
    val modul = claas.companionSymbol.asModule
    val im = cm reflect (cm reflectModule modul).instance
    defaut[A](im, "apply")
  }

  def defaut[A](im: InstanceMirror, name: String): A = {
    val at = newTermName(name)
    val ts = im.symbol.typeSignature
    val method = (ts member at).asMethod

    // either defarg or default val for type of p
    def valueFor(p: Symbol, i: Int): Any = {
      val defarg = ts member newTermName(s"$name$$default$$${i+1}")
      if (defarg != NoSymbol) {
        println(s"default $defarg")
        (im reflectMethod defarg.asMethod)()
      } else {
        println(s"def val for $p")
        p.typeSignature match {
          case t if t =:= typeOf[String] => null
          case t if t =:= typeOf[Int]    => 0
          case x                        => throw new IllegalArgumentException(x.toString)
        }
      }
    }
    val args = (for (ps <- method.paramss; p <- ps) yield p).zipWithIndex map (p => valueFor(p._1,p._2))
    (im reflectMethod method)(args: _*).asInstanceOf[A]
  }

  assert(Person(name = null) == newCase[Person]())
}


Answer 2:

如果你正在寻找一种方式来实例化不带参数的对象,你可以做一样的,你在你的例子一样,只是,只要你的倒影二传手可以处理设置不变瓦尔斯。

您将提供一个可选的构造,如下图所示:

case class Person(name : String, age : Int) {
    def this() = this("", 0)
}

注意,盒类不会产生零ARG伴侣的对象,所以你需要初始化它为: new Person()classOf[Person].newInstance() 然而,这应该是你在找什么做的。

应该给你输出,如:

scala> case class Person(name : String, age : Int) {
     |         def this() = this("", 0)
     |     }
defined class Person

scala> classOf[Person].newInstance()
res3: Person = Person(,0)


Answer 3:

下面的方法也适用于有任何一个不带参数的构造函数或有拖欠的所有主要构造函数任何斯卡拉类。

这使得比其他一些多少信息可在调用点少的假设,因为它需要的只是一类[_]例如,而不是implicits等同样的方法不依赖于类不必是一个案例类或具有所有的同伴。

FYI在施工过程中,要优先无参数的构造函数(如果存在)。

object ClassUtil {

def newInstance(cz: Class[_ <: AnyRef]): AnyRef = {

    val bestCtor = findNoArgOrPrimaryCtor(cz)
    val defaultValues = getCtorDefaultArgs(cz, bestCtor)

    bestCtor.newInstance(defaultValues: _*).asInstanceOf[A]
  }

  private def defaultValueInitFieldName(i: Int): String = s"$$lessinit$$greater$$default$$${i + 1}"

  private def findNoArgOrPrimaryCtor(cz: Class[_]): Constructor[_] = {
    val ctors = cz.getConstructors.sortBy(_.getParameterTypes.size)

    if (ctors.head.getParameterTypes.size == 0) {
      // use no arg ctor
      ctors.head
    } else {
      // use primary ctor
      ctors.reverse.head
    }
  }

  private def getCtorDefaultArgs(cz: Class[_], ctor: Constructor[_]): Array[AnyRef] = {

    val defaultValueMethodNames = ctor.getParameterTypes.zipWithIndex.map {
      valIndex => defaultValueInitFieldName(valIndex._2)
    }

    try {
      defaultValueMethodNames.map(cz.getMethod(_).invoke(null))
    } catch {
      case ex: NoSuchMethodException =>
        throw new InstantiationException(s"$cz must have a no arg constructor or all args must be defaulted")
    }
  }
}


Answer 4:

我遇到了类似的问题。 由于观察到易于使用微距天堂,宏注解是一个解决方案(斯卡拉2.10.X和2.11到目前为止)。

看看这个问题 ,并在下面的评论链接的示例项目。



文章来源: How can I create an instance of a Case Class with constructor arguments with no Parameters in Scala?