浅谈JAVA注解(Annotation)

2016-12-29  本文已影响217人  歌缅过往

一、废话

上一次写的简书,现在看,很尴尬(ㅎ.ㅎ)我很想删掉,但是毕竟第一次还是不删了吧。今天想学习一下Java中的注解,就当记录一下(顺便学习使用一下Markdown)。

二、发现与认识

<pre>
/**
创建者: LeeBoo
创建时间:2016/7/12 19:37
*/
public class IncomeFragment extends BaseFragment {
@Bind(R.id.iv_user_img)
ImageView mIvUserImg;
@Bind(R.id.tv_income_user_name)
TextView mTvIncomeUserName;
@Bind(R.id.tv_total_income)
TextView mTvTotalIncome;
@Bind(R.id.tv_record)
TextView mTvRecord;
@Bind(R.id.tv_bank_count)
TextView mTvBankCount;
@Override
protected View initView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_income, container, false);
</pre>

从源码上看注解类似于接口(其实就是一种特殊接口)

注解(Annotation)相当于一种标记,javac编译器、开发工具和其他程序可以通过反射机制来了解你的类及各种属性和方法上有无某个标记,就去干相应的事,标记可以加在包、类,属性、方法,方法的参数以及局部变量上。

三、了解与使用

认识注解前先认识元注解,元注解:在注解类上使用另一个注解类,那么被使用的注解类就称为元注解
<pre>
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/*****
*****创建者: LeeBoo
*****创建时间:2016/12/29 10:44
*****描述: 自定义注解 Annotation
*****/
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD, ElementType.TYPE})
public @interface Annotation {
}
</pre>

上面代码的Retention和Target称为元注解

Retention元注解有3种value属性值
@Retention(RetentionPolicy.SOURCE)
Annotation注解生命周期:只在java源文件中存在,javac编译成.class文件后注解就不存在了
@Retention(RetentionPolicy.CLASS)
Annotation注解生命周期:在java源文件(.java文件)中存在,编译成.class文件后注解也还存在,被Annotation注解类标识的类被类加载器加载到内存中后Annotation注解就不存在了
@Retention(RetentionPolicy.RUNTIME)
Annotation注解生命周期:让Annotation这个注解的生命周期一直程序运行时都存在

@Target元注解决定了一个注解可以标识到哪里,如标识在类上,在属性上,或者在方法上and so on, @Target默认值为可标识在任何地方

此时不是该看看@Deprecated、@Override、@SuppressWarnings这三个注解的@Retention和@Target注解的属性值分别是什么吗???

3.1为注解增加属性

<pre>
@Retention(RetentionPolicy.RUNTIME)
@Target( { ElementType.METHOD, ElementType.TYPE })
public @interface Annotation {
boolean isProgrammer ();//添加属性
注解的属性定义方式就和接口中定义方法的方式一样
}
</pre>

3.1.1为注解增加属性的默认值

<pre>
@Retention(RetentionPolicy.RUNTIME)
@Target( { ElementType.METHOD, ElementType.TYPE })
public @interface Annotation {
boolean isProgrammer() default true;//添加属性默认值true
}
</pre>

3.1.2注解中有一个名称为value的属性

<pre>
@Retention(RetentionPolicy.RUNTIME)
@Target( { ElementType.METHOD, ElementType.TYPE })
public @interface Annotation {
boolean isProgrammer() default true;//添加属性默认值true
String value() default "Java Programmer"; //名称为value的属性 默认值为"Java Programmer"
}
</pre>

3.2使用注解属性

<pre>
//应用Annotation注解的isProgrammer属性为true
写法1
@Annotation(isProgrammer = true)
写法2
@Annotation
//应用Annotation注解的value属性为Java Programmer
写法1
@Annotation(value = "Java Programmer")
写法2
@Annotation("Java Programmer") 即value=可以省略
public class AnnotationUse {
}
</pre>

3.3注解高级属性

3.3.1、数组类型的属性

注解类添加数组类型的属性:int[] id() default {1,2,3};
使用类使用数组类型的属性:@Annotation(id={2,3,4})
如果数组属性只有一个值,这时候属性值部分可以省略大括号,如:@Annotation(id=2),表示数组属性只有一个值,值为2(如同Butterknife中onClick注解)

3.3.2、枚举类型的属性

注解类添加枚举类型的属性:Language language() default Language.OC;
使用类使用枚举类型的属性:@Annotation(language=Language.JAVA)

3.3.3、元注解类型的属性
a、元注解类型的属性创建

<pre>
public @interface GradeAnnotation {
String grade() default "高级开发程序员";//元注解GradeAnnotation设置有一个属性grade
}
</pre>

b、元注解类型的属性添加
c、元注解类型的属性使用

<pre>
@Annotation( id = {8,0,8}, language = Language.JAVA, gradeAnnotation = @GradeAnnotation (grade = "中级开发程序员"))
public class AnnotationUse {
@Annotation //将Annotation注解标注到main方法上
public static void main(String[] args) {
使用反射机制对Annotation类的检查
一旦在某个类上使用了@Annotation,那么这个Annotation类的实例对象annotation就会被创建出来了
Annotation annotation = (Annotation) AnnotationTest.class.getAnnotation(Annotation.class);
System.out.println(annotation.language());//JAVA
System.out.println(annotation.id().length);//3
GradeAnnotation ga = annotation.gradeAnnotation();
System.out.println(ga.grade());//输出的结果为:"中级开发程序员"
}
}
</pre>

上一篇 下一篇

猜你喜欢

热点阅读