- public abstract class Test1 {
- /**
- * @param args
- */
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- Inner in=new Inner();
- in.run();
- }
- static class Inner extends Test1//当外部类中的静态方法访问内部类时,内部类也必须是静态的。主函数是静态的,所以被主函数访问的此内部类必须为静态。
- {
- void run()
- {
- System.out.println("Inner class.");//楼主,这条语句是不能直接写在内部类中的吧。
- }
- }
- }
复制代码 |