假设我有一堂课:
public class SomeClass {
public NotPresent1 method1(NotPresent2 input) {return null;}
public void method2() {}
}
我编译了这个类,但在运行时,NotPresent1 和/或 NotPresent2 不在类路径中。我可以加载那个类吗?我可以实例化这样的类并调用method2()
吗?或者我什至可以打电话method1(null)
?
假设我有一堂课:
public class SomeClass {
public NotPresent1 method1(NotPresent2 input) {return null;}
public void method2() {}
}
我编译了这个类,但在运行时,NotPresent1 和/或 NotPresent2 不在类路径中。我可以加载那个类吗?我可以实例化这样的类并调用method2()
吗?或者我什至可以打电话method1(null)
?