从JDK 5开始引入的技术
作用分类:
@Override
: 检测被标注的方法是否是继承自父类(接口)的方法。
@Deprecated
:该注解标注的内容,表示已过时。
@SuppressWarnings
:压制警告
一般传递参数all
package top.lukeewin.demo20Annotation; import java.util.Date; @SuppressWarnings("all") public class AnnotationDemo02 { @Override public String toString(){ return super.toString(); } @Deprecated public void show01(){ //有缺陷 } public void show02(){ //代替show01方法 } public void demo(){ show01(); Date date = new Date(); } }
格式:
元注解
public @interface 注解名称 {属性列表;}
本质:注解本质上就是一个接口,该接口默认继承Annotation接口
public interface MyAnno extends java.lang.annotation.Annotation {}
属性:接口中的抽象方法
@Target: 描述注解能够作用的位置
@Retention: 描述注解被保留的阶段
@Documented: 描述注解是否被抽取到api文档中
@Inherited: 描述注解是否被子类继承
获取注解定义的位置的对象(Class, Method, Field)
获取指定的注解
调用注解中的抽象方法获取配置的属性值
//其实就是在内存中生成了一个该注解接口的子类实现类对象 public class ProImpl implements Pro{ public String className(){ return "top.lukeewin.demo20Annotation.Demo04"; } public String methodName(){ return "show"; } }
package top.lukeewin.demo20Annotation; import java.lang.reflect.Method; @Pro(className = "top.lukeewin.demo20Annotation.Demo05", methodName = "show") public class ReflectTest { public static void main(String[] args) throws Exception { //可以创建任意类的对象,可以执行任意方法 //1.解析注解 //1.2 获取该类的字节码文件对象 Class<ReflectTest> reflectTestClass = ReflectTest.class; //2. 获取上边的注解对象 //其实就是在内存中生成了一个该注解接口的子类实现类对象 /*public class ProImpl implements Pro{ public String className(){ return "top.lukeewin.demo20Annotation.Demo04"; } public String methodName(){ return "show"; } }*/ Pro an = reflectTestClass.getAnnotation(Pro.class); //3. 调用注解对象中定义的抽象方法,获取返回值 String className = an.className(); String methodName = an.methodName(); System.out.println(className); System.out.println(methodName); //4. 加载该类进内存 Class<?> cls = Class.forName(className); //5. 创建对象 Object obj = cls.newInstance(); //6. 获取方法对象 Method method = cls.getMethod(methodName); //7. 执行方法 method.invoke(obj); } }
package top.lukeewin.demo20Annotation; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target(ElementType.TYPE) @Retention(RetentionPolicy.RUNTIME) public @interface Pro { String className(); String methodName(); }
package top.lukeewin.demo20Annotation; public class Demo05 { public void show(){ System.out.println("demo05...show..."); } }
本篇文章出自个人博客注解