阅读量:0
在Java中,自定义注解的方法如下:
- 使用
@interface
关键字定义注解:
public @interface MyAnnotation { // 注解元素 }
- 定义注解的元素,可以包括基本数据类型、String、Class、枚举类型、注解类型或者它们的数组:
public @interface MyAnnotation { String value(); // 定义一个字符串类型的注解元素 int count() default 1; // 定义一个整数类型的注解元素,并设置默认值为1 }
- 使用注解时,可以在注解元素上指定对应的值:
@MyAnnotation(value = "Hello", count = 3) public class MyClass { // 类的内容 }
- 在需要使用注解的地方,通过反射获取注解信息:
MyAnnotation annotation = MyClass.class.getAnnotation(MyAnnotation.class); String value = annotation.value(); // 获取注解元素的值 int count = annotation.count();
- 在需要使用注解的地方,可以通过元素的默认值来简化注解的使用:
@MyAnnotation("Hello") public class MyClass { // 类的内容 }