java注解之元注解RetentionPolicy.RUNTIME注解的实现本质
程序员文章站
2022-06-16 17:26:37
...
代码位置: https://github.com/a982338665/CoreHighLevel/tree/master/src/main/java/pers/li/annotation
受教地址:慕课大学:Java核心技术(高阶)陈良育
1.测试注解:
package pers.li.annotation.$6;
import java.lang.annotation.*;
@Retention(RetentionPolicy.RUNTIME)
public @interface Fruit {
String name() default "";
}
2.测试:
package pers.li.annotation.$6;
import java.lang.reflect.Field;
import java.lang.reflect.InvocationHandler;
import java.lang.reflect.Proxy;
import java.util.Map;
@Fruit(name = "Apple")
public class Main {
public static void main(String[] args) throws Exception{
//System.setProperty("sun.misc.ProxyGenerator.saveGeneratedFiles", "true");
//jdk11使用 ,用来将com.sun.proxy.$Proxy1写成文件
System.setProperty("jdk.proxy.ProxyGenerator.saveGeneratedFiles", "true");
//获取类上的注解
Fruit fruit = Main.class.getAnnotation(Fruit.class);
//输出注解的name值
System.out.println(fruit.name());//Apple
//输出fruit的真实类 //com.sun.proxy.$Proxy1
System.out.println(fruit.getClass().getName());
//输出Fruit真实类的父接口
System.out.println(fruit.getClass().getGenericInterfaces()[0]);
//生成代理类文件
InvocationHandler h = Proxy.getInvocationHandler(fruit);
//输出该代理类的InvokeHandler //sun.reflect.annotation.AnnotationInvocationHandler 主要处理注解 位于rt.jar包中
System.out.println(h.getClass().getName());
//获取存储注解值得属性map
Field f = h.getClass().getDeclaredField("memberValues");
f.setAccessible(true);
//转换为map
Map memberValues = (Map) f.get(h);
//only contain "name" key
for(Object o : memberValues.keySet())
{
System.out.println(o.toString());
}
//修改注解的name值
memberValues.put("name", "Pear");
//重新打印注解的name值,发现已经被改变
System.out.println(fruit.name()); //Pear
}
}
3.分析:
上一篇: 第1节、一个萝卜一个坑——计数排序
下一篇: html与js和php之间实现数据交互