请大家帮帮忙,一个小问题
class Author{
String name;
Author(String str){
name = str;
System.out.println("从Author类中输出");
System.out.println("姓名为"+name);
}
}
class FictionAuthor extends Author{
String storytype;
FictionAuthor(String str2,String type){
super(str2);
System.out.println("在FictionAuthor类中输出");
System.out.println("姓名为"+name);
}
}
public class TestingAuthor{
public static void main(String []args){
FictionAuthor aa=new FictionAuthor("simon","M");
}
}
在JCreator中运行为什么会提示java.lang.NoClassDefFoundError:TestingAuthor