一面 面试(70min) 互相了解一些情况 重载详谈 Java 多态 类加载机制 运用,给了一段代码,grandpa,father,son三个类问我输出了什么 差不多长这个样子 class Grandpa { static { System.out.println("1"); } } class Father extends Grandpa { static { System.out.println("2"); } public static int factor = 25; public Father() { System.out....