静态类,用于类内部。
静态类,不需要创建父类对象,即可使用。
非静态类,需要先创建父类对象,才可使用。
class A{
static class B1{}
class B2{}
}
= new A.B1();
= new A().new B2();