interface Bank {
void connect();
}
class SBI implements Bank {
static{
System.out.println("Hello from SBI static");
}
public void connect() {
System.out.println("Connected to SBI");
}
}
class LooseCouplingTest {
public static void main(String... args)throws Exception {
String className = args[0];
Class.forName(className);
}
}
上述代码的输出似乎是
Hello from SBI static
我应该在我的代码和 Y 中添加什么来also
打印语句
Connected to SBI
非常感谢详细的解释
PS菜鸟在这里