java基础源码 (3)--Annotation(注解)
借鉴博客地址:https://www.cnblogs.com/skywang12345/p/3344137.html
/**
* The common interface extended by all annotation types.
所有注释类型扩展的公共接口*/
public interface Annotation { boolean equals(Object obj); /**
* Returns the hash code of this annotation, as defined below:
返回注解的哈希码值*/
int hashCode(); /**
* Returns a string representation of this annotation. The details
* of the representation are implementation-dependent, but the following
* may be regarded as typical:
以字符串形式返回注解*/
String toString(); /**
* Returns the annotation type of this annotation.
返回注解的类型*/
Class<? extends Annotation> annotationType();
}
ElementType.java是Enum枚举类型,它用来指定Annotation的类型
/**
* The constants of this enumerated type provide a simple classification of the
* syntactic locations where annotations may appear in a Java program. These
* constants are used in {@link Target java.lang.annotation.Target}
* meta-annotations to specify where it is legal to write annotations of a
* given type.
此枚举类型的常量提供了可能出现在java程序中注释的位置进行简单分类,这些类型是用于Targer(元注释)上
*此枚举类型的常量提供了注释可能出现在Java程序中的语法位置的简单分类。 这些常量用于{@link Target java.lang.annotation.Target}元注释,以指定编写给定类型注释的合法位置。
*/
public enum ElementType {
/** Class, interface (including annotation type), or enum declaration */
类,接口(包括注释类型)或枚举类型
TYPE,
/** Field declaration (includes enum constants)
字段声明(包括枚举常量)
*/
FIELD,
/** Method declaration
方法声明
*/
METHOD,
/** Formal parameter declaration
参数声明
*/
PARAMETER,
/** Constructor declaration
构造函数声明
*/
CONSTRUCTOR,
/** Local variable declaration
局部变量声明
*/
LOCAL_VARIABLE,
/** Annotation type declaration
注释声明类型
*/
ANNOTATION_TYPE,
/** Package declaration
包声明
*/
PACKAGE,
/**
* Type parameter declaration
*输入参数类型
* @since 1.8
*/
TYPE_PARAMETER,
/**
* Use of a type
*使用类型
* @since 1.8
*/
TYPE_USE
}
RetentionPolicy.java,是Enum枚举类型,它用来指定Annotation的策略。通俗点说,就说不同的RetentionPolicy的注释作用域不同
/**
* Annotation retention policy.
注释保留策略*/
public enum RetentionPolicy {
/**
* Annotations are to be discarded by the compiler.
Annotation注释信息仅存在于编译器处理期间,编译器处理完成之后就没有改注释信息了
*/
SOURCE, /**
* Annotations are to be recorded in the class file by the compiler
* but need not be retained by the VM at run time. This is the default
* behavior.
编译器将Annotation注释存储于类对应的在.class文件中,默认行为
*/
CLASS, /**
* Annotations are to be recorded in the class file by the compiler and
* retained by the VM at run time, so they may be read reflectively.
编译器将Annotation存储于类对应的。class文件中,并且可以由JVM读入(反射)*/
RUNTIME
}
语法定义:
/*
* @interface:
* 意味着它实现了java.lang.annotation.Annotation接口,即该注解就是一个Annotation
* 定义Annotation时,@interface是必须的
* 注意:
* 它和我们通常的implemented实现接口的方法不同,Annotation接口的实现细节都由编译器
* 完成。通过@interface定义注解后,改注解不能继承其他的注解或接口
* @Documented:
* 类和方法的Annotation在缺省情况下是不出现在javadoc中的,如果使用@Documented修饰该注解
* 则表示它可以出现在Javadoc中。定义注解时,@Documented可有可无,若没有定义,则注解不会
* 出现在javadoc中
* @Target(ElementType.TYPE):
* ElementType是Annotation(注解)的类型属性,而@Target的作用,就是来指定Annotation(注解)
* 类型属性。@Target(ElementType.TYPE)指定该Annotation(注解)的类型是ElementType.TYPE,
* 这意味着MyAnnotation是用来修饰类,接口(包括注释类型)或枚举声明的注释。定义Annotation(注解)
* 时,@Target可有可无,若有@Target,则该Annotation(注解)可以用于任何地方
*@Retention(RetentionPolicy.RUNTIME):
* RetentionPolicy是Annotation(注解)的策略属性,而@Retention的作用,就是指定Annotation(注解)
* 的策略是RetentionPolicy.RUNTIME,意味着,编译器会将该Annotation信息保存在对应类的.class文件中
* 并且能被jvm读取。定义Annotation(注解)时,@Retention可有可无,若没有@Retention,则默认是
* RetentionPolicy.CLASS(默认行为)
* */
@Documented
@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
public @interface MyAnnotation { }
反射使用注解
package com.lkj.Annotation; import com.lkj.string.Persion; import java.lang.annotation.*;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method; @Retention(RetentionPolicy.RUNTIME)
@interface MyAnnotation2{
String [] value() default "unknown";
} class Person{
@MyAnnotation2//意味着empty()对应的MyAnnotation2的value值默认是unknown
@Deprecated//意味着empty()方法,不再被建议使用
public void empty(){
System.out.println("\nempty");
}
@MyAnnotation2(value = {"girl","boy"})//意味着MyAnnotation2的value值是{“girl”,“boy”}
public void someBody(String name,int age){
System.out.println("\nsomebody: "+name+", "+age);
}
} public class AnnotationUser {
public static void iteratorAnnotations(Method method){
//判断someBody()方法是否包含MyAnnotation2注解
if(method.isAnnotationPresent(MyAnnotation2.class)){
//获取该方法的MyAnnotation2注解实例
MyAnnotation2 myAnnotation2 = method.getAnnotation(MyAnnotation2.class);
//获取MyAnnotation2的值,并打印出来
String[] value = myAnnotation2.value();
for (int i=0;i<value.length;i++){
System.out.printf(value[i]);
}
System.out.println();
}
//获取方法上的所有注解,并打印出来
Annotation[] annotations = method.getAnnotations();
for (Annotation annotation:annotations){
System.out.println(annotation);
}
}
public static void main(String []args) throws Exception {
//实例Persion对象
Person person = new Person();
//获取Persion的Class实例
Class<Person> c=Person.class;
//获取someBody()方法的method实例
Method method=c.getMethod("someBody", new Class[]{String.class,int.class});
//执行该方法
method.invoke(person,new Object[]{"lily",18});
iteratorAnnotations(method); //获取someBody()方法的Method实例
Method empty = c.getMethod("empty", new Class[]{});
empty.invoke(person,new Object[]{});
iteratorAnnotations(empty);
}
}
输出结果:
java基础源码 (3)--Annotation(注解)的更多相关文章
- java基础源码 (6)--ArrayListt类
原作出处:https://www.cnblogs.com/leesf456/p/5308358.html 简介: 1.ArrayList是一个数组队列,相当于动态数组.与java中的数组相比,它的容量 ...
- java基础源码 (1)--String类
这个是String类上面的注释,我用谷歌翻译翻译的,虽然有点语法上的问题,但是大概都可以翻译出来 /** * The {@code String} class represents character ...
- java基础源码 (5)--reflect包-AccessibleObject类
学习参考博客:https://blog.csdn.net/benjaminzhang666/article/details/9664585AccessibleObject类基本作用 1.将反射的对象标 ...
- java基础源码 (4)--reflect包-AnnotatedElement接口
接口:AnnotatedElement * Represents an annotated element of the program currently running in this * VM. ...
- java基础源码 (2)--StringBuilder类
Serializable(接口): 是一个IO的序列化接口,实现了这个接口,就代表这个类可以序列化或者反序列化,该接口没有方法或者字段,仅用于标识可串行话的语义. Appendable(接口): /* ...
- Java基础13:反射与注解详解
Java基础13:反射与注解详解 什么是反射? 反射(Reflection)是Java 程序开发语言的特征之一,它允许运行中的 Java 程序获取自身的信息,并且可以操作类或对象的内部属性. Orac ...
- 自学Java HashMap源码
自学Java HashMap源码 参考:http://zhangshixi.iteye.com/blog/672697 HashMap概述 HashMap是基于哈希表的Map接口的非同步实现.此实现提 ...
- SpringMVC源码解读 - RequestMapping注解实现解读 - RequestCondition体系
一般我们开发时,使用最多的还是@RequestMapping注解方式. @RequestMapping(value = "/", param = "role=guest& ...
- Spring IoC 源码分析 (基于注解) 之 包扫描
在上篇文章Spring IoC 源码分析 (基于注解) 一我们分析到,我们通过AnnotationConfigApplicationContext类传入一个包路径启动Spring之后,会首先初始化包扫 ...
随机推荐
- swift4之String与NSString的区别与使用
String是结构体,NSString是类,这是它们的根本区别. 在 Swift 中,结构体struct是值类型,String是结构体,所以也是值类型.值类型被赋予给一个变量.常量或者被传递给一个函数 ...
- Linux系统使用ss命令查看端口状态
Linux系统使用ss命令查看端口状态 目录 1.可用工具 2.ss帮助 2.1 选项分类说明 2.2 过滤选项family 2.3 过滤选项state 2.4 状态之间的关系 3.ss的使用 3.1 ...
- SQL语言的四种类型
SQL语言共分为四大类:数据查询语言DQL,数据操纵语言DML,数据定义语言DDL,数据控制语言DCL. 1. 数据查询语言DQL 数据查询语言DQL基本结构是由SELECT子句,FROM子句,WHE ...
- Linux centos7 shell特殊符号、cut命令、sort_wc_uniq命令、tee_tr_split命令、shell特殊符号
一.shell特殊符号.cut命令 *任意字符 [root@davery ~]# ls /tmp/*.txt/tmp/1.txt /tmp/2.txt /tmp/q.txt[root@davery ~ ...
- os期末复习
登记之后会发生两个变化:读者数增加(v操作).座位数减少(p操作) 注销之后会发生的变化:读者数减少(p操作).座位数增加(v操作) 必须要清楚释放的是甚麽,以及申请的是甚麽资源(在具体的题目当中) ...
- uWSGI 和 SQLAlchemy 一起使用的注意事项
最近在使用 Flask 中使用 SQLAlchemy 开发程序,一开始好好的,然后使用 uWSGI 部署到线上后,出现了各种 mysql 客户端的问题,如: (_mysql_exceptions.P ...
- 1-7SpringBoot之表单验证@Valid
SpringBoot提供了强大的表单验证功能实现,给我们省去了写验证的麻烦: 这里我们给下实例,提交一个有姓名和年龄的表单添加功能, 要求姓名不能为空,年龄必须是不小于18 : 我们先新建一个Stud ...
- 六 Hibernate多表操作&级联&外键维护
Hibernate的一对多关联映射 Hibernate的多对多关联映射 数据库表与表之间的关系:一对多,多对多,一对一 一对多:一个部门对应多个员工,一个员工只能属于一个部门.一个客户对应多个联系人, ...
- express - 快速构建项目
1,cnpm i express -g 2, cnpm i express-generater -g 3, express - e 项目名
- Solr查询和过滤器执行顺序剖析
一.简介 Solr的搜索主要由两个操作组成:找到与请求参数相匹配的文档:对这些文档进行排序,返回最相关的匹配文档.默认情况下,文档根据相关度进行排序.这意味着,找到匹配的文档集之后,需要另一个操作来计 ...