谁能帮我看看这两道 JAVA 题目 ?万分感激!!!

2025-01-01 08:56:34
推荐回答(1个)
回答1:

1.
/**
* 这个类用于创建包
*/
package parent; // 创建包 parent

public class Location{
/*void disp(){
System.out.println("child 子包中的 Location 类");
}*/

/** 构造 disp() 方法 */
public String disp(){
return ("child 子包中的 Location 类");
}
}

2.
/**
* 这个类用于导入包
*/

import parent.Location; // 导入包 parent

public class ParentTest{
public static void main(String args[]){
Location objLocation = new Location(); // 调用 parent 包的 Loation 类
//objLocation.disp();
String str = objLocation.disp(); // 调用 Location 类的 disp() 方法
System.out.println(str); //输出
}
}