メンバー内部クラス(インスタンス内部クラス)
4566 ワード
機能:
◆内部クラスオブジェクト外部作成構文:outter.new Inner(); ◆インスタンスメソッド外部クラスインスタンスメンバー:Outter.this.メンバー#メンバー#
例1:特性テスト
例2:メンバー内部クラスの間接的なマルチ継承
◆内部クラスオブジェクト外部作成構文:outter.new Inner(); ◆インスタンスメソッド外部クラスインスタンスメンバー:Outter.this.メンバー#メンバー#
例1:特性テスト
public class MemberInnerClass {
public static void main(String []args){
//
Outer1 outer=new Outer1();
//
Outer1.Inner1 inner=outer.new Inner1();
inner.innerShow();
outer.outerShow();
}
}
class Outer1{
private String name=" ";
private int num1=10;
public void outerShow(){
System.out.println(name);
System.out.println(num1);
}
public class Inner1{
private String name=" ";
private int num2=20;
private static final int num3=10;//
//private static int num3=30;// ,
public void innerShow(){
System.out.println(name);
//System.out.println(Outer1.this.name);
System.out.println(num2);
outerShow();// ,
}
}
}
例2:メンバー内部クラスの間接的なマルチ継承
public class MultiExtendsDemo{
public static void main(String []args){
C c=new C();
c.showA();
c.showB();
}
}
class A{
public void showA(){
System.out.println("A");
}
}
class B{
public void showB(){
System.out.println("B");
}
}
class C {
private class A1 extends A{
public void showA(){
super.showA();
}
}
private class B1 extends B{
public void showB(){
super.showB();
}
}
public void showA(){
new A1().showA();
}
public void showB(){
new B1().showB();
}
}