在成员变量中创建对象?- class Outer
- {
- //定义一个内部类类型的变量,然后创建对象
- Inner in = new Inner();
-
- //外部类方法
- void method()
- {
- in.method();
- }
-
- //内部类
- class Inner
- {
- void method()
- {
- System.out.println("内部类");
- }
- }
- }
- class Test
- {
- public static void main(String[] args)
- {
- new Outer().method();
- }
- }
复制代码 |
|