直接访问公有的内部类对象
内部类是可以被指定的修饰符所修饰的
直接访问A中的内部类B中的非静态成员,要直接创建内部的对象,这种情况不多见
更多的时候都是:private class B,因此不能在类的外部创建对象
class InnerClassDemo
{
public static void main(String[] args)
{
A.B in=new A().new B();
//直接创建内部类B的对象
//先创建外部类A的对象再创建内部类B的对象
//完整的写为A.B in=new A().new A.B()
in.show();
}
}
|
|