我有一个类似的自定义注释
class MyProperty(val name: String)
extends annotation.StaticAnnotation; // or should I extend something else?
对于给定的类,我如何列出它的所有具有此注释的字段?我正在寻找类似(只是猜测)的东西:
def listProperties[T: ClassTag]: List[(SomeClassRepresentingFields,MyProperty)];
这可以用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
方法,如果您需要使用它做一些事情,它可以让您以树的形式访问它的参数。