为啥age high都输出不了
package neibulei;
public class Father {
public int age;
public String name="cz";
public int high;
void fat() {
System.out.println("父类输出了");
}
}
package neibulei;
public class prin {
public static void main(String[] args) {
// TODO Auto-generated method stub
erzi smool=new erzi();
smool.high=8;
smool.name="cz";
smool.fat();
}
}