各位大哥大姐帮帮忙,我初学JAVA碰到问题!
package parent.child;
public class Location {
void disp(){
System.out.println("child子包中的Location类");
}
}
import parent.child.*; //导入子包
public class ParentTest {
ParentTest s1=new ParentTest();
// s1.disp();
}
请问我该如何调用子包中写的disp方法,不胜感激!!