温馨提示×

java获取注解标注的方法是什么

小亿
93
2024-08-05 18:06:12
栏目: 编程语言

在Java中获取注解标注的方法可以通过反射来实现。以下是一个示例代码,演示了如何获取注解标注的方法:

import java.lang.annotation.Annotation;
import java.lang.reflect.Method;

public class AnnotationExample {

    @MyAnnotation
    public void myMethod() {
        System.out.println("This is myMethod.");
    }

    public static void main(String[] args) {
        AnnotationExample example = new AnnotationExample();
        Class clazz = example.getClass();
        Method[] methods = clazz.getMethods();

        for (Method method : methods) {
            Annotation annotation = method.getAnnotation(MyAnnotation.class);
            if (annotation != null) {
                System.out.println("Method with MyAnnotation: " + method.getName());
            }
        }
    }
}

// 自定义注解
@interface MyAnnotation {
}

在上面的示例中,我们定义了一个自定义的注解MyAnnotation,并标注在myMethod方法上。在main方法中,我们通过反射获取类中所有的方法,然后判断每个方法上是否有MyAnnotation注解,如果有,则输出该方法的名称。通过这种方式,我们可以轻松地获取标注了特定注解的方法。

0