java類型擦除(Java Type Erasure Mechanism)

來源:互聯網
上載者:User

標籤:pes   att   jdk   sub   ati   cep   參數   類型資訊   bsp   

在JDK5之後java提供了泛型(Java Genertics),允許在定義類的時候使用類型作為參數。泛型廣泛應用於各類集合中。本文對其以及其用法進行介紹。

1、一個常見的錯誤

下面例子中,用List<Object>類型的參數來接收List<String>。

public class Main {    public static void main(String[] args) throws IOException {        ArrayList<String> al = new ArrayList<String>();        al.add("a");        al.add("b");         accept(al);    }     public static void accept(ArrayList<Object> al){        for(Object o: al)            System.out.println(o);    }}

似乎Object是String的父類,並沒有問題。但是,編譯時間候是不能通過的。報錯如下:

The method accept(ArrayList < Object > ) in the type Main is not applicable for the arguments (ArrayList < String > )

2、List<Object> vs List<String>

原因是java類型擦除機制,在編譯成class檔案時候,編譯器並未把Object和String類型資訊編譯進去。因此為了防止錯誤,編譯器在編譯時間候發現他們不一致就會報錯。

3、萬用字元和無界萬用字元

無界萬用字元List<?> 可接收任何類型

public static void main(String args[]) {        ArrayList<Object> al = new ArrayList<Object>();        al.add("abc");        test(al);    }     public static void test(ArrayList<?> al){        for(Object e: al){//no matter what type, it will be Object            System.out.println(e);// in this method, because we don‘t know what type ? is, we can not add anything to al.         }    }

萬用字元

 

List< Object > - List can contain Object or it‘s subtypeList< ? extends Number > -  List can contain Number or its subtypes.List< ? super Number > - List can contain Number or its supertypes.

  

java類型擦除(Java Type Erasure Mechanism)

相關文章

聯繫我們

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