이번에는 김영한님의Java 중급2에 내용들을 정리하고 보충하였다. 이번 내용들의 핵심은 제네릭과 컬렉션 프레임워크이다. 컬렉션 프레임워크 같은 경우, 자료 구조를 일부 구현하기 때문에, 깃허브에 정리 해두었다. 따라서 이번 포스팅은 비교적 짧게 제네릭만 흩어볼 수 있다.제네릭 제네릭이 필요한 예시 1)public class IntegerBox { private Integer value; public void set(Integer value){ this.value = value; } public Integer get(){ return value; }}get과 set이 가능한 IntegerBox 클래스public class StringBox { pr..