반응형 HashMap1 Java 자료구조 - List, Set, Map - Collection 이란? Collection은 자료구조 List, Set 의 구현 객체이다(Interface). 하지만 Map 같은경우 List, Set과 달리 Key-Value 라는 구조적인 차이가 있어 Collection Interface를 구현(상속)하지 안고 별도로 정의하고 있다. List, Set 상속 관계 // ArrayList public class ArrayList extends AbstractList public abstract class AbstractList extends AbstractCollection implements List public abstract class AbstractCollection implements Collection // HashSet public c.. 2020. 5. 30. 이전 1 다음 반응형