Java Generics-무제한 유형 삭제
Java 컴파일러는 제한되지 않은 유형 매개 변수가 사용되는 경우 일반 유형의 유형 매개 변수를 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 클래스로 대체하고 유형 삭제 후 컴파일러는 다음 코드에 대한 바이트 코드를 생성합니다.
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