我有一个自定义注释,如
class MyProperty(val name: String)
extends annotation.StaticAnnotation; // or should I extend something else?
对于给定的类,如何列出具有此注释的所有字段?我正在寻找像(只是猜测)的东西:
def listProperties[T: ClassTag]: List[(SomeClassRepresentingFields,MyProperty)];
答案 0 :(得分:11)
可以使用TypeTag
来完成此操作,方法是过滤输入类型的members
:
import reflect.runtime.universe._
def listProperties[T: TypeTag]: List[(TermSymbol, Annotation)] = {
// a field is a Term that is a Var or a Val
val fields = typeOf[T].members.collect{ case s: TermSymbol => s }.
filter(s => s.isVal || s.isVar)
// then only keep the ones with a MyProperty annotation
fields.flatMap(f => f.annotations.find(_.tpe =:= typeOf[MyProperty]).
map((f, _))).toList
}
然后:
scala> class A { @MyProperty("") val a = 1 ; @MyProperty("a") var b = 2 ;
var c: Long = 1L }
defined class A
scala> listProperties[A]
res15: List[(reflect.runtime.universe.TermSymbol, reflect.runtime.universe.Annotation)]
= List((variable b,MyProperty("a")), (value a,MyProperty("")))
这不会直接为您提供MyProperty
,而是universe.Annotation
。它有一个scalaArgs
方法,如果你需要用它做什么,它可以让你作为树访问它。