Generic type instance 생성
Java Generic type 을 new 해서 instance 를 만들고 싶을 때가 있다. 그 때에는 아래 처럼 하면 된다.- Restrictions on Generics (The Java™ Tutorials > Learning the Java Language > Generics (Updated))
- Create instance of generic type in Java? - Stack Overflow
T createContents(Class<T> clazz) throws IllegalAccessException, java.lang.InstantiationException { return clazz.newInstance(); }
댓글 없음:
댓글 쓰기