这是我的第一个代码放在名为 Certification 的目录中
package certification;
class Parent{
protected int x=9;//protected access
}
这是我放置在名为 other 的单独目录中的其他代码
package other;
import certification.Parent;
class Child extends Parent{
public void testIt(){
System.out.println("x is" + x);
}
public static void main(String args[]){
Child n=new Child();
n.testIt();
}
}
但问题是每当我尝试编译 Child 类时,编译器都会给出以下错误 Child.java:2: package certificate does not exist
import certification.Parent;
^
Child.java:3:找不到符号符号:class Parent
class Child extends Parent{
^
Child.java:5:找不到符号符号:变量 x 位置:class other.Child
System.out.println("x is" + x);
^
请帮我纠正它并正确运行它。真诚的问候。