这是我的代码(JDK1.8):
@Retention(RetentionPolicy.RUNTIME)
@Target(value={ElementType.TYPE})
@Documented
public @interface MyAnnotation {
}
@MyAnnotation
public class Main {
public static void main(String[] args) {
Class<Main> cls = Main.class;
Annotation[] annotations = cls.getDeclaredAnnotations();
Arrays.stream(annotations).forEach(an -> {
if (an instanceof MyAnnotation) {
System.out.println("proxy");
} else {
System.out.println("???");
}
System.out.println(an.getClass().getName());
});
}
}
我在Windows,centos7和ubuntu上进行测试的结果相同:
proxy
com.sun.proxy.$Proxy1
我的问题:这是我的环境问题还是JDK将自动生成代理类?如果是后者,为什么?预先感谢。
答案 0 :(得分:2)
注释类型声明指定一种新的注释类型,一种特殊的接口类型。”
由于不能直接实例化接口,因此必须有某种对象实现从反射API方法返回的接口。究竟是代理还是其他匿名类取决于实现。