GENERIC 썸네일형 리스트형 Generic public class Generic2 {public static void main(String[] args) {ObjectClass obj = new ObjectClass();// Object 타입으로 선언했으므로 모든 자료형 전달 가능obj.setValue("홍길동");System.out.println("값 : "+obj.getValue());obj.setValue(123);System.out.println("값 : "+obj.getValue());obj.setValue('c');System.out.println("값 : "+obj.getValue());//char c = obj.getValue(); // 컴파일 에러 발생!// c = (char)obj.getValue(); // 형변환 필요/* * .. 더보기 이전 1 다음