java怎么自定義注解調(diào)用方法

小億
170
2024-05-14 09:30:16

在Java中,可以通過(guò)定義一個(gè)注解類來(lái)自定義注解,并在需要使用的地方調(diào)用該注解。下面是一個(gè)簡(jiǎn)單的示例:

  1. 定義一個(gè)自定義注解類:
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface MyAnnotation {
    String value();
}
  1. 在需要使用注解的地方調(diào)用該注解:
public class MyClass {
    @MyAnnotation("Hello, World!")
    public void myMethod() {
        // do something
    }

    public static void main(String[] args) {
        MyClass myClass = new MyClass();
        try {
            // 獲取方法上的注解
            MyAnnotation annotation = myClass.getClass().getMethod("myMethod").getAnnotation(MyAnnotation.class);
            System.out.println(annotation.value());
        } catch (NoSuchMethodException e) {
            e.printStackTrace();
        }
    }
}

在上面的示例中,定義了一個(gè)名為MyAnnotation的自定義注解,并在myMethod方法上使用了該注解。在main方法中通過(guò)反射獲取myMethod方法上的注解,并輸出注解的值。

0