请各位大神帮忙看看为什么编译不了
public class Person{String name;
String gender;
int age;
public void eat(){
System.out.println("编译不了");
}
}
*************************************************
public class Text{
public static void main(String[] args){
Person MyPerson=new Person();
MyPerson name="为什么编译不了";
System.out.println(MyPerson.name);
}
}
/*
*这是两个文件来的。
*在第二个小程序文件中
*为什么编译不了。
*不是把第一个文件中的
*类名放到第二个小程序
*中就可以编译吗
*可为什么不行
*/