摘要: 基于java.lang.annotation注解 一、元注解 二、自定义注解 @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface CheckLogin { /** 阅读全文
posted @ 2023-05-29 22:45 CodingOneTheWay 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 1.获取类 Class clazz = Class.forName("demo.Target"); 2.反射获取构造方法的方法 批量 getConstructors() public的 getDeclaredConstructors() 所有的 单个 getConstructor(T) getDec 阅读全文
posted @ 2023-05-29 22:36 CodingOneTheWay 阅读(2) 评论(0) 推荐(0) 编辑
回到顶部