反射
南国异梦
这个作者很懒,什么都没留下…
展开
-
通过反射获取属性
1.定义一个类; public class Study1 { private Integer a=2; private String b="3"; public Integer getA() { return a; } public void setA(Integer a) { this.a = a; } ...原创 2019-05-12 14:38:56 · 964 阅读 · 0 评论 -
获取自定义注解上的值
package 自定义注解; import java.lang.annotation.ElementType; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @Target(ElementType.FIE...原创 2019-06-19 09:17:06 · 3228 阅读 · 0 评论