注解(Annotation)
Annotation的作用:
不是程序本身,可以对程序作出解释(这一点和注释(comment)没有区别)
可以被其他程序(比如:编译器等)读取
注解有检测和约束的作用
Annotation的格式:
注解是以“@注解名”在代码中存在的,还可以添加一些参数值,例如:
@SuppressWarnings(value = “unchecked”)
Annotation在哪里使用:
可以附加在package,class,method,field等上面,相当于该他们添加了额外的辅助信
息,我们通过反射机制编程实现对这些元素的访问
内置注解Annotation:
@Override 重写的注解,覆盖前面写的方法
@Deprecated 表示不鼓励程序员使用的元素
@FunctionalInterface 函数式接口
@SuppressWarnings 用来抑制编译时的警告信息
@SuppressWarnings(“all”)
@SuppressWarnings(“uncheckrd”)
@SuppressWarnings(value={“unchecked”,deprecation})
元注解(meta-annotation)
元注解的作用就是负责注解其他注解,java定义了4个标准的meta-annotation类型,他们
被用来提供对其他annotation类型的说明
这些类型和他们所支持的类在java.lang.annotation包中可以找到
(@Target,@Retention,@Documented,@Inherited)
@Target:用于描述注解的使用范围(即被描述的注解可以用在什么地方)
@Target(value= ElemtentType.Method)表示注解只能在方法上作用,即不能在类上作用
@Retention:表示需要在什么级别保存该注解信息,用于描述注解的生命周期
(SOURCE<CLASS<RUNTIME)
@Document:说明该注解将被包含在javadoc中
@Inherited:说明该子类可以继承父类中的该注解
自定义注解
使用@Interface自定义注解时,自动继承了java.lang.annotation.Annotation接口
分析:
@interface用来生命一个注解,格式:public @ interface 注解名{定义内容}
其中的每一个方法实际上是申明了一个配置函数
方法的名称就是参数名称
返回值类型就是参数的类型(返回值只能是基本类型,class,String,enum)
可以通过default来声明参数的默认值
如果只有一个参数成员,一般参数名为value
注解元素必须要有值,我们自定义注解元素时,经常使用空字符串,0作为默认值
//自定义注解
public clasas test3{
//注解可以显示赋值,如果没有默认值,我们就必须该注解赋值
@MyAnnotation(age =18,name = "clsld")
public void test(){}
@MyAnnotation("clsld")
public void test1(){}
}
@Target({ElementType.TYPE,ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation{
//注解的参数:参数类型+参数名();
String name() default "";
int age();
int id() default -1;//如果默认值为-1,表示不存在
String[] schools() default {"清华大学","北京大学"};
}
@Target({ElementType.TYPE,ElementType.METHOD})
@Rentention(RetentPolicy.RUNTIME)
@interface MyAnnotation1{
String value();
}