上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 64 下一页
摘要: package annotate; import java.lang.annotation.*; import java.lang.reflect.Field; // 通过反射操作注解 public class Test16 { public static void main(String[] ar 阅读全文
posted @ 2023-09-14 01:08 被占用的小海海 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 了解即可 package annotate; import java.lang.reflect.Method; import java.lang.reflect.ParameterizedType; import java.lang.reflect.Type; import java.util.Li 阅读全文
posted @ 2023-09-14 00:19 被占用的小海海 阅读(4) 评论(0) 推荐(0) 编辑
摘要: package annotate; import java.lang.reflect.Constructor; import java.lang.reflect.Field; import java.lang.reflect.Method; // 性能检测 public class Test12 { 阅读全文
posted @ 2023-09-13 23:42 被占用的小海海 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 反射的作用 package annotate; import java.lang.reflect.Constructor; import java.lang.reflect.Field; // 通过反射,动态创建对象 public class Test12 { public static void 阅读全文
posted @ 2023-09-13 23:11 被占用的小海海 阅读(3) 评论(0) 推荐(0) 编辑
摘要: package annotate; import java.io.File; import java.lang.reflect.Constructor; import java.lang.reflect.Field; import java.lang.reflect.Method; public c 阅读全文
posted @ 2023-09-13 19:58 被占用的小海海 阅读(0) 评论(0) 推荐(0) 编辑
摘要: 完全听不懂 阅读全文
posted @ 2023-09-13 17:08 被占用的小海海 阅读(4) 评论(0) 推荐(0) 编辑
摘要: package annotate; // 分析类的初始化,取决于是否实例化对象? public class Test10 { static { System.out.println("main被初始化"); } public static void main(String[] args) throw 阅读全文
posted @ 2023-09-13 16:13 被占用的小海海 阅读(2) 评论(0) 推荐(0) 编辑
摘要: package annotate; public class Test09 { public static void main(String[] args) { System.out.println(new A().a); } } class A{ static { a=300; } static 阅读全文
posted @ 2023-09-13 15:03 被占用的小海海 阅读(2) 评论(0) 推荐(0) 编辑
摘要: package annotate; import java.lang.annotation.ElementType; public class Test08 { public static void main(String[] args) { Class c1 = Class.class; // C 阅读全文
posted @ 2023-09-13 00:12 被占用的小海海 阅读(6) 评论(0) 推荐(0) 编辑
摘要: package annotate; // 什么叫反射 public class Test06_Reflation { // 通过反射获得类的Class对象 public static void main(String[] args) throws ClassNotFoundException { P 阅读全文
posted @ 2023-09-12 23:26 被占用的小海海 阅读(4) 评论(0) 推荐(0) 编辑
上一页 1 ··· 24 25 26 27 28 29 30 31 32 ··· 64 下一页