zl程序教程

您现在的位置是:首页 >  其它

当前栏目

内部类嵌套

内部 嵌套
2023-09-11 14:18:05 时间
 1  public class XZ
 2  {
 3      static class b
 4      {
 5             public static void main(String[] args) {
 6                 // TODO Auto-generated method stub
 7                 System.out.println("test");
 8             }
 9      }
10  }

这种写法也是正确的