- /**
- *Title:NeiBuLei 类<br>
- *Description:通过NeiBuLei类来说明JAVA中的文档注释<br>
- *Company:ccs
- *@author ccs
- *@version 1.0
- */
- class Outer {
- static int num=10;
- /**
- *这里一个静态的内部类
- */
- static class Inner {
- public static void test() {
- System.out.println(num);
- }
- }
- }
- public class NeiBuLei {
- public static void main(String[] args) {
- //Outer.Inner inner=new Outer().new Inner();
- //inner.test();
- Outer.Inner.test();
- }
- }
复制代码 这里显示不了版本和作者等信息,我用另外一个类,这样写却能生成,下面上图,大家帮忙看下
|