java編譯器採用bridge方法來兼容本該使用泛型的地方使用了非泛型的用法的問題。java
以下代碼:ide
public class TestBridgeMethod { 對象
public static void main(String[] args) { get
P p = new S(); 編譯器
p.test(new Object()); hash
} it
} io
class P<T> { 編譯
public T test (T t){
return t;
}
}
class S extends P<String> {
@Override
public String test(String t) {
return t;
}
}
p引用的是S的對象,但S的test方法返回值是String,在jdk1.4中沒有泛型,就不會對p.test(new Object());進行檢查,這樣在調用的時候就會報ClassCastException
聲明p的時候使用P<String> p就不會有這樣的問題了。
爲了兼容非泛型的代碼,java編譯器爲test生成了兩個方法。看下面的代碼:
import java.lang.reflect.Method;
import java.util.Arrays;
public class TestBridgeMethod {
public static void main(String[] args) {
Class<?> clazz = S.class;
Method[] methods = clazz.getMethods();
for(Method method : methods) {
System.out.println(method.getName() + ":" + Arrays.toString(method.getParameterTypes()) + method.isBridge());
}
}
}
class P<T> {
public T test (T t){
return t;
}
}
class S extends P<String> {
@Override
public String test(String t) {
return t;
}
}
運行結果爲:
test:[class java.lang.String]false
test:[class java.lang.Object]true
getClass:[]false
hashCode:[]false
equals:[class java.lang.Object]false
toString:[]false
notify:[]false
notifyAll:[]false
wait:[long, int]false
wait:[]false
wait:[long]false
編譯器爲S生成了兩個test方法,一個參數爲String,用於泛型。一個參數爲Object,用於非泛型,這個方法就是bridge方法,調用method.isBridge返回true