実験的な Scala 2.10 リフレクションを使用して、遅延 val であるフィールドで FieldMirror.get() を呼び出そうとすると、null が返されます。リフレクションを使用して遅延値を評価する方法はありますか? get() 関数は、後で null を返さなくなりました。
次の例を検討してください。
case class Person(val firstName: String,
val lastName: String) {
lazy val name = firstName + " " + lastName
}
import scala.reflect.runtime.{universe => ru}
val runtimeMirror = ru.runtimeMirror(getClass.getClassLoader)
val fred = Person("Fred", "Smith")
val instanceMirror = runtimeMirror.reflect(fred)
val nameTerm = ru.typeOf[Person].declaration(ru.newTermName("name")).asTerm
val nameLazy = instanceMirror.reflectField(nameTerm)
nameLazy.get
>>> res8: Any = null
fred.name
>>> res9: String = Fred Smith
nameLazy.get
>>> res10: Any = Fred Smith