白黒クラスの継承とネストに違いはありますか。それとも両方とも同じですか?
super キーワードでスーパークラス変数にアクセスできます 内部クラス変数にアクセスするには?
class Outerclass
{
static int c;
int d=5;
static class Inner
{
int a =9;
}
class NestedInner
{
int b=10;
}
}
class Test
{
public static void main(String args[]){
Outerclass Oc=new Outerclass();
Outerclass.Inner n=Oc.new Inner();
System.out.println("....a is...."+n.a);
}
}