额,不知道代码哪里错了。大神你在哪
//外部类HelloWorld
package helloimooc;
public class test8{
private String name = "imooc";
int age = 20;
public class Inner {
String name = "爱慕课";
public void show() {
System.out.println("外部类中的name:" + Inner.this.name );
System.out.println("内部类中的name:" + name );
}
}
public static void main(String[] args) {
test8 o = new test8 ();
Inner inn = o.new Inner() ;
inn.show();
}
}
/*
错误: 在类 helloimooc.test8$Inner 中找不到 main 方法, 请将 main 方法定义为:
public static void main(String[] args)
否则 JavaFX 应用程序类必须扩展javafx.application.Application
*/