首頁  >  文章  >  Java  >  java中的匿名內部類別的區別介紹

java中的匿名內部類別的區別介紹

高洛峰
高洛峰原創
2017-03-19 10:54:591569瀏覽

匿名內部類別也就是沒有名字的內部類別

正因為沒有名字,所以匿名內部類別只能使用一次,它通常用來簡化程式碼編寫

但使用匿名內部類別還有個前提條件:必須繼承一個父類別或實作一個介面

 

實例1:不使用匿名內部類別來實作抽象方法

abstract class Person {
    public abstract void eat();
}
 
class Child extends Person {
    public void eat() {
        System.out.println("eat something");
    }
}
 
public class Demo {
    public static void main(String[] args) {
        Person p = new Child();
        p.eat();
    }
}

運行結果: eat something

可以看到,我們用Child繼承了Person類,然後實作了Child的一個實例,將其上轉型為Person類的引用

但是,如果此處的Child類別只使用一次,那麼將其編寫為獨立的一個類別豈不是很麻煩?

這時候引入了匿名內部類別

 

實例2:匿名內部類別的基本實作

abstract class Person {
    public abstract void eat();
}
 
public class Demo {
    public static void main(String[] args) {
        Person p = new Person() {
            public void eat() {
                System.out.println("eat something");
            }
        };
        p.eat();
    }
}

運行結果:eat something

可以看到,我們直接將抽象類別Person中的方法在大括號中實作了

這樣便可以省略一個類別的書寫

並且,匿名內部類別還能用在介面上

 

實例3:在介面上使用匿名內部類別

interface Person {
    public void eat();
}
 
public class Demo {
    public static void main(String[] args) {
        Person p = new Person() {
            public void eat() {
                System.out.println("eat something");
            }
        };
        p.eat();
    }
}

運行結果:eat something

 

#由上面的例子可以看出,只要一個類別是抽象的或是一個接口,那麼其子類別中的方法都可以使用匿名內部類別來實現

最常用的情況就是在多執行緒的實作上,因為要實作多執行緒必須繼承Thread類別或繼承Runnable介面

 

實例4:Thread類別的匿名內部類別實作

public class Demo {
    public static void main(String[] args) {
        new Thread() {
            public void run() {
                for (int i = 1; i <= 5; i++) {
                    System.out.print(i + " ");
                }
            }
        }.start();
    }
}

執行結果:1 2 3 4 5

 

實例5:Runnable介面的匿名內部類別實作

public class Demo {
    public static void main(String[] args) {
        Runnable r = new Runnable() {
            public void run() {
                for (int i = 1; i <= 5; i++) {
                    System.out.print(i + " ");
                }
            }
        };
        Thread t = new Thread(r);
        t.start();
    }
}

其實可以寫的更精簡一些

public static void main(String[] args) {
        new Thread(new Runnable() {
            public void run() {
                for (int i = 1; i <= 5; i++) {
                    System.out.print(i + " ");
                }
            }
        }).start();
    }

 

運行結果:1 2 3 4 5


以上是java中的匿名內部類別的區別介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn