我必须检查 kotlin 数据类中的特定变量是否存在注释。
注释类
annotation class Test(
val identifier: String
)
数据类
data class Player(
val name: String,
@property:Test("stance")
val stance: String,
@property:Test("check")
val check: String
)
我必须检查此播放器对象中的特定变量是否存在 Test 注释。
fun execute(player: Player) {
//while this works, but i have to check for a specific variable
player::class.members.forEach{
val testAnnotation = it.findAnnotation<Test>()
if(testAnnotation != null) {
// DO something
}
}
I need to do something like
player.check.hasAnnotation<Test>()
}
在这里不胜感激,TIA