[轉]JAVA 在main中訪問內部類、方法等

來源:互聯網
上載者:User

標籤:void   int   str   屬性   a.out   pre   stat   div   out   

1.使用靜態屬性、方法、內部類

 1 class A 2 { 3     static int i = 1;    //    A 類的靜態屬性 4     static void outPut()    //    A 類的靜態方法 5     { 6         System.out.println(i); 7     } 8     static class B        //    A 類的靜態內部類 9     {10         void outPut()11         {12             System.out.println("B");13         }14     }15     public static void main(String[] args)16     {17         18         System.out.println(i);       //    調用靜態屬性 19         outPut();            //    調用靜態方法    20         B b = new B();        //    調用靜態內部類21         b.outPut();22     }23 } 

2.使用此類的對象名訪問

 1 class A 2 { 3     int i = 1;    //    屬性 4     void outPut()    //    方法 5     { 6         System.out.println(i); 7     } 8     class B    //    內部類 9     {10         void outPut()11         {12             System.out.println("B");13         }14     }    15     B newB()            //    (關鍵)在動態方法中建立 B 的對象16     {17         B b = new B();18         return b;19     }    20     public static void main(String[] args)21     {22         A a = new A();23         System.out.println(a.i);        //    調用屬性24         a.outPut();        //    調用方法        25         B b = a.newB();        //    調用內部類26         b.outPut();27     }28 }

 

在靜態main中,無法建立非靜態內部類。

 

[轉]JAVA 在main中訪問內部類、方法等

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.