Java泛型 无限制类型擦除
Java泛型 无限制类型擦除 介绍
如果使用无限定类型参数,Java 编译器会将泛型类型中的类型参数替换为 Object类型。
Java泛型 无限制类型擦除 示例
package com.yiidian;
public class GenericsTester {
public static void main(String[] args) {
Box<Integer> integerBox = new Box<Integer>();
Box<String> stringBox = new Box<String>();
integerBox.add(new Integer(10));
stringBox.add(new String("一点教程网"));
System.out.printf("Integer Value :%d\n", integerBox.get());
System.out.printf("String Value :%s\n", stringBox.get());
}
}
class Box<T> {
private T t;
public void add(T t) {
this.t = t;
}
public T get() {
return t;
}
}
在这种情况下,Java编译器将用Object类替换T,类型擦除后,编译器将为以下代码生成字节码。
package com.yiidian;
public class GenericsTester {
public static void main(String[] args) {
Box integerBox = new Box();
Box stringBox = new Box();
integerBox.add(new Integer(10));
stringBox.add(new String("一点教程网"));
System.out.printf("Integer Value :%d\n", integerBox.get());
System.out.printf("String Value :%s\n", stringBox.get());
}
}
class Box {
private Object t;
public void add(Object t) {
this.t = t;
}
public Object get() {
return t;
}
}
在这两种情况下,结果是相同的。
输出结果为:
热门文章
优秀文章