静态内部类不需要创建外部类实例就可以直接创建静态内部类的实例
new outerclass.innerclass();
非静态内部类必须要创建外部类实例才能创建非静态内部类的实例
outerclass oc = new outerclass()
oc.new innerclass();
静态内部类只能访问外部类的静态成员