本文主要介紹了java泛型的相關知識。具有很好的參考價值。下面跟著小編一起來看下吧
首先請看如下程式碼:
public class generictype { public static void main(String str[]) { Hashtable h =new Hashtable(); h.put(1, "String类型"); int a = (String) h.get(1); System.out.println(a); } } //执行结果 String类型 //如果我们将上述由红色标出的String改为int执行后结果如下(更改后编译没有错误): Exception in thread "main" java.lang.ClassCastException: java.lang.String cannot be cast to java.lang.Integer at genetictype.generictype.main(generic1.java:10)
以上就是強制型別轉換可能帶來的典型錯誤,然而這個錯誤在編譯期間無法知道,以至於在運行期間jvm檢查後拋出類型轉換異常。
再看下述程式碼:
public class generictype { public static void main(String str[]) { Hashtable<Integer, String> h = new Hashtable<Integer, String>(); h.put(1, "String类型"); String a= h.get(1); System.out.println(a); } } //执行结果 string类型 //需要提出的是1.上述由红色标出的String如果改为int,在编译的时候会报错 2.在h.get(1)前面不需要再进行强制类型转换。
綜上看來泛型的作用為:
1.就是在編譯的時候檢查類型的安全性(解決java中強制類型轉換可能導致的錯誤),交給了編譯器巨大的使命。
2.提高程式碼的重用率
類型擦除:
#類型擦除就是說編譯器編譯.java檔案時,將類的泛型參數去掉,那麼jvm載入字節碼檔案的時候對泛型不可見,這個過程就稱為類型擦除。
與類型擦除有關的現象:
(1) 泛型類別沒有Class的類別類型。例如不存在Listf7e83be87db5cd2d9a8a0b8117b38cd4.class或是Listc0f559cc8d56b43654fcbe4aa9df7b4a.class,只有List.class。
public class generictype { public static void main(String str[]){ test1<String> t = new test1<String>(); test1<Date> tt = new test1<Date>(); System.out.println(t.a); System.out.println(tt.a); } } class test1<T>{ static int a = 1; } //结果 1
(3) 泛型的型別參數錯誤不能透過異常處理,因為異常處理是jvm實現的,而jvm則載入的字節碼檔案已經擦除了泛型特徵,這也間接的說明了泛型的意義:在編譯期間發現參數類型錯誤。
類型擦除的基本流程也比較簡單:
1.將型別參數用頂層父類別替換,這類一般是Object ,如果指定了類型參數的上界的話,則使用這個上界。
2.去掉出現的型別聲明,也就是去掉a8093152e673feb7aba1828c43532094的內容。
例如:T get()方法宣告變成了Object get();Listf7e83be87db5cd2d9a8a0b8117b38cd4就變成List了。接下來就可能需要產生一些橋接方法(bridge method)。這是由於擦除了類型之後的類別可能缺少某些必須的方法。例如考慮下面的程式碼:
public class generictype {public static void main(String str[]) { test3 t =new test3(); t.getT("11111"); } } interface test2<T>{ public T getT(T t); } class test3 implements test2<String>{ public String getT(String t){ return t; } } //类型擦除后的代码 public class generictype { public static void main(String str[]) { test3 t = new test3(); t.getT("11111"); } interface test2 { public Object getT(Object t); } class test3 implements test2 { public String getT(String T){ return T } public Object getT(Object t) { return this.getT((String) t); }//如果没有这段代码,在类型擦除后test3没有重写接口test2的抽象方法,明显错误,因此编译器的巨大作用就是在这里帮忙生成了该方法,同时编译器也依靠该功能完成检错任务。 }
泛型的分類:泛型類,泛型接口,泛型方法,泛型異常
# #泛型類別
public class generictype { public static void main(String str[]) { test<Integer, String> t = new test<Integer, String>(); t.put(1, "str1"); t.put(2, "str2"); System.out.println(t.get(1)); System.out.println(t.get(2)); } } class test<T, V> { public Hashtable<T, V> h = new Hashtable<T, V>(); public void put(T t, V v) { h.put(t, v); } public V get(T t) { return h.get(t); } } //执行结果 str1 str2
多型方法(泛型方法):在函數名稱前定義泛型參數,可以在傳入參數列表,傳回值類型,方法體裡面引用
public class generictype { public <T> String getString(T obj){ return obj.toString(); } public static void main(String str[]) { generictype g =new generictype ();//不需要类的泛型 System.out.println(g.getString(1)); System.out.println(g.getString('a')); System.out.println(g.getString("a")); } } //执行结果 a a
泛型異常(兼具泛型介面)
public class generictype { public static void main(String str[]) { TestException t =new TestException(); try { t.excute(2); } catch (IOException e) { e.printStackTrace(); } } } //extends说明该泛型参数继承于Exception interface TestExceptionInterface<T extends Exception> { public void excute(int i) throws T; } class TestException implements TestExceptionInterface<IOException>{ @Override public void excute(int i) throws IOException { if(i<10){ throw new IOException(); } } } //意义:1.针对不同的可能出现的异常类型,定义自己的实现类。 2.定义多个实现类的时候,不用一个一个手动throws异常,提高了代码重用率
以上是java泛型的範例程式碼詳解的詳細內容。更多資訊請關注PHP中文網其他相關文章!