---------------------- <a href="http://edu.csdn.net"target="blank">ASP.Net+Android+IO开发S</a>、<a href="http://edu.csdn.net"target="blank">.Net培训</a>、期待与您交流! ----------------------

3.12 内部类

    1、访问规则:1)、内部类可以直接访问外部类中的成员

                2)、外部类要访问内部类,必须建立内部类对象

    2、访问格式:1)、当内部类在可以直接访问外部类中的成员位置上,而且非私有,在外部其他类中,可以直接建立内部类对象。

      格式:外部类名.内部类名变量名= 外部类对象.内部类对象; 

           Outer.Inner in = new Outer().new Inner();

      2)、当内部类在成员位置上,就可以被成员修饰符修饰

              (1)、private :将内部类在外部类中进行封装

              (2)、static:内部类就具备static的特性,因此只能直接访问外部类中的static成员,出现访问局限

        注意: a、在外部其他类中,如何直接访问static内部类的非静态成员?

                   new Outer.Inner().function();

               b、在外部其他类中,如何直接访问static内部类的静态成员?

                   Outer.Inner.function();

               c、当内部类中定义了静态成员,内部类必须是静态的

               d、当外部类中的静态方法访问内部类时,内部类也必须是静态的

    3、应用:当描述事物时,事物的内部还有事物,该事物用内部类来描述,因为内部事物在使用外部事物的内容

    4、局部内部类:

    5、匿名内部类:

        1)、前提:内部类必须继承或实现一个外部类接口

        2)、格式:new 父类或者接口(){定义子类的内容}

        3)、其实匿名内部类就是一个匿名子类对象,可以理解为带内容对象

        4)、局限性:当匿名内部类中方法过多时会造成混乱,So其中定义的方法最好不要超过3个。

        5)、应用:当函数参数时接口类型时,而且接口中只有不超过3个,可以用匿名内部类作为实际参数进行传递

    6、代码示例:

abstract class AbsDemo{abstract void show();}class Outer{private static int num = 4;/*匿名内部类* class Inner2 extends AbsDemo{@Overridevoid show() {System.out.println(num);}}public void function(){new Inner2.show();}-----------------------------------------------------------------------------------以上的代码可以写成以下形式public void function(){new AbsDemo(){//new AbsDemo(){void show() System.out.println("num"+num);}是AbsDemo类的子类对象,因为只有子类才能复写父类AbsDemo的抽象方法,当方法有几个的时候,可以给其去个名字AbsDemo a = new AbsDemo();@Overridevoid show() {System.out.println("num"+num);}.show();}*/class Inner{//当类是内部类时,就变成了外部类的成员了,所以可以被private修饰。//static class Inner{加静态的情况void function(){//非静态的情况//static void function(){加静态的情况int num = 6;System.out.println("innner:"+/*Outer.this.*/num);//内部类可以直接访问外部类中的成员//为什么内部类可以直接访问外部类中的成员?因为内部类持有一个外部类的引用,其格式是 外部类名.this(重点)}}void method(){final int x = 56;class PartInner{/*局部内部类:(1)、不可以被成员修饰符修饰(2)、可以直接访问外部类中的成员,因为还持有外部类中的引用,但是不可以访问它所在的局部中的变量,只能访问被final修饰的局部变量。*/void function(){System.out.println(Outer.this.num);}}new PartInner().function();/*Inner in = new Inner();//外部类要访问内部类,必须建立内部类对象in.function();*/}}public class InnerClass {public static void main(String[] args){//new Outer.Inner().function();访问static内部类的非静态成员的方式//Outer.Inner.function();访问static内部类的静态成员的方式Outer out = new Outer();out.method();//直接访问内部类中的成员Outer.Inner in = new Outer().new Inner();}}

 

---------------------- <a href="http://edu.csdn.net"target="blank">ASP.Net+Android+IOS开发</a>、<a href="http://edu.csdn.net"target="blank">.Net培训</a>、期待与您交流! ---------------------- 

详细请查看:<ahref="http://edu.csdn.net" target="blank"></a>