Java之內部類

來源:互聯網
上載者:User

一、內部類的訪問規則:

1,內部類可以直接存取外部類中的成員,包括私人。之所以可以直接存取外部類中的成員,是因為內部類中持有了一個外部類的引用,格式 : 外部類名.this;

2,外部類要訪問內部類,必須建立內部類對象;

3,當內部類定義在外部類的成員位置上,而且非私人,可以在外部其他類中直接建立內部類對象。

格式:外部類名.內部類名  變數名 = 外部類對象.內部類對象;                   

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

public class InnerDemo{public static void main(String[] args){//Outer out=new Outer();//out.method();//在外部類之外直接存取內部類Outer.Inner in=new Outer().new Inner();in.fun();//System.out.println(in.x); 編譯錯誤 x是private私人的,只能在本類中訪問}}class Outer //外部類{private int x=3;//外部類私人成員變數//private class Inner//內部類,作為外部類的成員存在,可以用private修飾{private int x =4;void fun(){System.out.println(Outer.this.x);//輸出 3System.out.println(this.x);//輸出 4show();//訪問外部類的show方法}}void method(){   //外部類要訪問內部類的成員和函數要建立內部類的執行個體對象Inner in=new Inner();//建立內部類的執行個體System.out.println(in.x);in.fun();}private void show(){System.out.println("外部類show 方法!!!");}}

二、靜態內部類

當內部類在成員位置上,就可以被成員修飾符所修飾。比如,private:將內部類在外部類中進行封裝。

static:內部類就具備static的特性。當內部類被static修飾後,只能直接存取外部類中的static成員,出現了訪問局限。

public class InnerDemo01{public static void main(String[] args){Outer.Inner in=new Outer.Inner();in.fun();//訪問內部類非靜態方法 格式:new 外部類名.內部類名().(變數名或方法名);Outer.Inner2.show();//訪問內部類中的靜態方法 格式:外部類名.內部類名.(變數名或方法名);}}class Outer{private static int x=3;static class Inner//靜態內部類{void fun(){System.out.println("inner fun:"+x);//靜態內部類只能訪問外部類中靜態,不能訪問非靜態}}static class Inner2//定義另外一個靜態內部類{static void show(){System.out.println("inner2 show");}}}

三、局部內部類

內部類定義在局部時:

1.不能被成員修飾符修飾

2.可以直接存取外部類的成員,因為還持有外部類的引用,但是不可以訪問它所在的局部中的變數。只能訪問被final修飾的局部變數。

public class InnerDemo02{public static void main(String[] args){new Outer().method(6);}}class Outer{private int x=3;//外部類成員變數void method(final int a)//final局部變數a{final int y=4;//final局部變數yclass Inner//定義一個局部內部類{void fun(){System.out.println(x);System.out.println(y);System.out.println(a);}}new Inner().fun();//建立內部類執行個體訪問內部類方法}}

四、匿名內部類

1,匿名內部類其實就是內部類的簡寫格式。
2,定義匿名內部類的前提:內部類必須是繼承一個類或者實現介面。
3,匿名內部類的格式: new 父類或者介面(){定義子類的內容}
4,其實匿名內部類就是一個匿名子類對象。而且這個對象有點胖,可以理解為帶內容的對象。
5,匿名內部類中定義的方法最好不要超過3個。

public class InnerDemo03{public static void main(String[] args){         new Outer().method();}}abstract class Person{abstract void study();}class Outer{private int num=3;class Student extends Person//內部類{  void study()//重寫父類study方法{System.out.println("學習Java");}void play()//子類新增方法{   System.out.println(num);System.out.println("打籃球");}}public void method(){Student s=new Student();s.study();s.play();}}

public class InnerDemo04{public static void main(String[] args){         new Outer().method();}}abstract class Person{abstract void study();}class Outer{private int num=3;    public void method(){/*Person p=new Person(){void study(){System.out.println("學習java");}void play(){System.out.println(num);System.out.println("打籃球");}};p.study();//p.play(); 編譯失敗  *///匿名內部類new Person(){void study(){System.out.println("學習java");}}.study();}}

內部類練習

public class InnerTest{public static void main(String[] args){Outer.method().show();//根據此句補全代碼//        注意下面這種書寫格式new Object(){void show(){System.out.println("show run....");}}.show();}}interface Inter{void show();}class Outer{static int num=99;//method方法為補全代碼    public static Inter method()    {    Inter in=new Inter()    {    public void show()    {    System.out.println("num="+num);    }    };    return in;    }}
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.