25
런타임에 일반 유형의 클래스 가져 오기
어떻게하면 되나요? public class GenericClass<T> { public Type getMyType() { //How do I return the type of T? } } 지금까지 시도한 모든 것은 항상 Object사용 된 특정 유형이 아닌 유형을 반환합니다 .
508
java
generics
reflection