摘要:
基于java.lang.annotation注解 一、元注解 二、自定义注解 @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface CheckLogin { /** 阅读全文
摘要:
1.获取类 Class clazz = Class.forName("demo.Target"); 2.反射获取构造方法的方法 批量 getConstructors() public的 getDeclaredConstructors() 所有的 单个 getConstructor(T) getDec 阅读全文