java怎么获取注解标注的方法

44次阅读
没有评论

共计 868 个字符,预计需要花费 3 分钟才能阅读完成。

可以使用反射机制来获取注解标注的方法。

首先,需要获得要获取注解的类的 Class 对象,可以通过类名.class 或者对象.getClass()方法来获取。然后,通过 Class 对象的 getMethods()方法来获取该类的所有公共方法。接着,遍历这些方法,可以通过 Method 对象的 getAnnotation()方法来获取方法上的指定注解。

以下是一个示例代码:

import java.lang.reflect.Method;

public class AnnotationExample {@MyAnnotation
    public void myMethod() {// 方法体
    }

    public static void main(String[] args) throws NoSuchMethodException {
        Class<AnnotationExample> clazz = AnnotationExample.class;
        Method[] methods = clazz.getMethods();

        for (Method method : methods) {if (method.isAnnotationPresent(MyAnnotation.class)) {MyAnnotation annotation = method.getAnnotation(MyAnnotation.class);
                System.out.println("Method " + method.getName() + " has annotation " + annotation.value());
            }
        }
    }

}

在上面的代码中,定义了一个自定义注解 @MyAnnotation,然后在myMethod() 方法上使用了该注解。在 main 方法中,通过反射获取了 AnnotationExample 类的所有方法,并判断每个方法是否有 @MyAnnotation 注解,如果有,则打印出方法名和注解值。

注意:获取到的方法包括了父类中的方法,如果只想获取当前类中的方法,可以使用 getDeclaredMethods() 方法。

丸趣 TV 网 – 提供最优质的资源集合!

正文完
 
丸趣
版权声明:本站原创文章,由 丸趣 2023-12-13发表,共计868字。
转载说明:除特殊说明外本站除技术相关以外文章皆由网络搜集发布,转载请注明出处。
评论(没有评论)