gpt4 book ai didi

java - 从类中获取带注释的变量

转载 作者:搜寻专家 更新时间:2023-10-31 19:40:11 24 4
gpt4 key购买 nike

这个问题是我之前发现的一个问题的跟进
java: get all variable names in a class

我想要的是从类中获取变量,但不是获取所有变量,我只想要具有注释 @isSearchable 的变量。

所以基本上我有 2 个问题:

  • 如何创建注释?

  • 如何仅通过这个注解过滤我的字段?

还有一件事,如果它是我经常使用的东西,它是否可取(我猜反射应该很慢)。

谢谢

最佳答案

/** Annotation declaration */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface isSearchable{
//...
}

@isSearchable
public String anyField = "any value";

检查像:

//use MyClass.class.getDeclaredFields() if you want the fields only for this class.
//.getFields() returns the fields for all the class hierarchy
for(Field field : MyClass.class.getFields()){
isSearchable s = field.getAnnotation(isSearchable.class);
if (s != null) {
//field has the annotation isSearchable
} else {
//field has not the annotation
}
}

关于java - 从类中获取带注释的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14052994/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com