您好,登錄后才能下訂單哦!
這篇文章主要講解了Java匿名類,匿名內(nèi)部類的用法,內(nèi)容清晰明了,對此有興趣的小伙伴可以學習一下,相信大家閱讀完之后會有幫助。
內(nèi)部類:
class Outer{ int a=5; static int b=6; void show() { System.out.println("hello world"); } class Inner{ void use() { System.out.println(a);//5 System.out.println(b);//6 show();//hello world } } void create() { new Inner().use(); } } public class Demo { public static void main(String[] args) { new Outer().create(); Outer.Inner oi=new Outer().new Inner(); oi.use(); } }
實現(xiàn)接口方法的例子:
class Outer{ void show() { System.out.println("run in Outer"); } } public class Demo { public static void main(String args[]) { Outer ot=new Outer(){ void show() { System.out.println("run in Inner"); } }; ot.show();//run in Inner } }
看完上述內(nèi)容,是不是對Java匿名類,匿名內(nèi)部類的用法有進一步的了解,如果還想學習更多內(nèi)容,歡迎關注億速云行業(yè)資訊頻道。
免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權內(nèi)容。