mutiple markers at this line
public class HelloWorld2 {
public class Inner {
public void show ( ) {
System.out.println ( "imooc" ) ;
}
}
public static void main ( String [ ] args ) {
public void print ( ) { //这行提示mutiple markers at this line 哪里有问题啊
HelloWorld2 hello = new HelloWorld2 ( ) ;
Inner i = hello.new Inner ( ) ;
i.show ( ) ;
}
}
}