[컴][자바] generic type 에서 new 하는 방법

generic type 에서 instance 생성 방법 / 어떻게 instance 를 하지 / new 사용법



Generic type instance 생성

Java Generic type 을 new 해서 instance 를 만들고 싶을 때가 있다. 그 때에는 아래 처럼 하면 된다.

T createContents(Class<T> clazz) throws IllegalAccessException, java.lang.InstantiationException {
        return clazz.newInstance();
    }








댓글 없음:

댓글 쓰기