摘要:
反射是框架灵魂的起源 反射是通过字节码文件(.class)获得类中的属性、方法、构造方法 使用到的Person类 1 public class Person { 2 private String name; 3 protected int age; 4 String sex; 5 public St 阅读全文
摘要:
动物类(父类) class Animals { int a = 0; public void eat() { System.out.println("动物吃饭!"); } public int f(int x, int y) { return x + y; } public static int g 阅读全文