参考文章
http://blog.csdn.net/zhoudaxia/article/details/33731583
注解的定义:
注解为我们在代码中添加信息提供了一种形式化的方法,使我们可以在稍后的某一个时刻使用这些数
据。每当创建描述特性的的类或者接口时,一旦其中包含了重复性的工作,那么就可以考虑使用接口。
一、定义注解
1.使用@interface
2.元注解
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface Test{
//注解元素定义
public int value()
public String description() default “haha”
}
注:注解类不支持继承
二、元注解
@Target: 表示注解可以在什么时候运用到。可能的ElementType
1.CONSTRUCTOR:构造器的声明
2.FIELD:作用域全局变量
3.LOCAL_VARIABLE:局部变量
4.METHOD:方法声明
5.PACKAGE:包声明
6.PARAMETER:作用于参数
7.TYPE:类,接口,或者enum
@Retention:表示在什么级别保存注解信息
1.SOURCE:注解将被编译器丢弃
2.CLASS:注解在class文件中使用
3.RUNTIME:在运行时使用
@Documented
1.将此类注解包含在Javadoc中
@Inherited
1.允许子类继承父类中的注解
三、定义注解元素
1.注解元素的可用类型:
基本类型,String,Class,enum,Annotation。
2.default定义注解元素的默认值
int name() default 0;
String value()default “0”;
3.value注解元素的快捷方式
如果注解元素使用了value为元素的名称,且该元素是唯一要赋值的元素,则那么使用时可以不用键-值的方式命名
例如:
@Retention(RetentionPolicy.RUNTIME)
public @interface Test{
//注解元素定义
public int value()
public String description() default “haha”
}
使用时
@Test(10)
public int a;
4.使用注解类型的注解。
public @interface haha{
public Test test() default @Test(description=“heihei”);
}
//使用时:
@haha(test=@Test(description=“哎呦”))
public String aiyou;
定义注解解释器
定义了任何的注解,如果没有能够对注解进行解析的类,注解将和普通的参数。
自定义注解解释器常用到的方法
例如有以下注解
DBTable, SQLInteger,SQLString
1.拿到类上的注解
DBTable dbTable=clazz.getAnnotation(DBTable.class);
2.拿到参数上的所有注解
for(Field field:clazz.getDeclaredFields()){
Annotation anns=field.getDeclaredAnnotations();
}