摘要:
性能对比分析(普通方法/反射/反射关闭检测) import java.lang.reflect.InvocationTargetException; import java.lang.reflect.Method; //分析性能问题 public class Test10 { //普通方式调用 pu 阅读全文
摘要:
类加载内存分析 了解:类的加载过程 类的加载与ClassLoader的理解 代码如下 public class Test05 { public static void main(String[] args) { A a = new A(); System.out.println(A.m); } /* 阅读全文