要实现自定义注解,你需要按照以下步骤来操作:
@interface
注解来定义该注解,例如:@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation {
String value() default ""; // 定义注解的属性
}
@MyAnnotation
来标记该注解,例如:public class MyClass {
@MyAnnotation(value = "Hello")
public void myMethod() {
// 方法体
}
}
public class MyAnnotationProcessor {
public void processAnnotations(Object obj) {
Method[] methods = obj.getClass().getDeclaredMethods();
for (Method method : methods) {
if (method.isAnnotationPresent(MyAnnotation.class)) {
MyAnnotation annotation = method.getAnnotation(MyAnnotation.class);
String value = annotation.value();
// 处理注解信息
System.out.println("Annotation value: " + value);
}
}
}
}
以上就是自定义注解的基本实现步骤,你可以根据自己的需求对注解进行定制化扩展。