Java Generics - การลบประเภทที่ไม่ได้ผูกมัด
Java Compiler แทนที่พารามิเตอร์ type ในประเภททั่วไปด้วย Object หากใช้พารามิเตอร์ชนิดที่ไม่ถูกผูกไว้
ตัวอย่าง
package com.tutorialspoint;
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("Hello World"));
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 จะแทนที่ T ด้วย Object class และหลังจาก type erasure คอมไพลเลอร์จะสร้าง bytecode สำหรับโค้ดต่อไปนี้
package com.tutorialspoint;
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("Hello World"));
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;
}
}
ในทั้งสองกรณีผลลัพธ์จะเหมือนกัน -
เอาต์พุต
Integer Value :10
String Value :Hello World