오늘은 제네릭메서드에관한 공부를 해볼까합니다중요한것이니 잘보고 배워가시는게 있으면 좋겠습니다!제네릭이 필요한 이유public class IntegerBox { private Integer value; public Integer getValue() { return value; } public void setValue(Integer value) { this.value = value; }}public class StringBox { private String value; public String getValue() { return value; } public void setValue(String value) { this.value = value; }} 메인코드public class BoxMain ..