You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
제네릭의 타입은 런타임에 타입 소거가 된다.
타입 소거는 제네릭 타입이 특정 타입으로 제한되어 있으면 해당 타입에 맞춰 컴파일시 타입 변경이 발생하고,
타입 제한이 없으면 Object 타입으로 변경된다.
Primitive 타입을 사용하지 못하는 이유는, 해당 타입이 Object 클래스를 상속받고 있지 않기 때문.
The text was updated successfully, but these errors were encountered:
List<T>
The text was updated successfully, but these errors were encountered: