public class Student
public class StudentDemo
你写了2个public,应该把第一个public去掉。当一个类使用了public修饰,文件名要和类名相同。
从你的错误提示也可以看出,在第一行你用public修饰了Student类,而编译器找不到Student.java文件,所以报错。
你把第一个类的public去掉 文件名 和第二个类的类名一致就可以了
我专门把两种都试了。。。作者: Benwolf0818 时间: 2013-3-13 22:49
编译没法通过,错误提示The public type Student must be defined in its own file,是因为一个.java中只可以定义一个public class作者: 刘国涛 时间: 2013-3-14 07:47
我知道了,谢谢各位的回答!