자바

컬렉션 프레임워크

프로아마추어 2023. 6. 5. 17:26

컬렉션 프레임워크: 자바에서 사용하는 개체를 다루는 데이터 집합.

 

컬렉션에의 대표적인 하위 인터페이스로 List와 Set이 있다.

 

List Set
순서를 유지하는 데이터 집합. 순서를 유지하지 않는 데이터 집합.
중복 값을 허용한다. 중복 값을 허용하지 않는다.

Map은 Collection에 포함되지 않는 인터페이스이다.

순서를 유지하지 않는 데이터 집합.
key, value 쌍을 가진다.
value 값은 중복을 허용한다.

 

 

* 참고 링크

Collection, Map 이미지

https://www.geeksforgeeks.org/how-to-learn-java-collections-a-complete-guide/

 

How to Learn Java Collections - A Complete Guide - GeeksforGeeks

A Computer Science portal for geeks. It contains well written, well thought and well explained computer science and programming articles, quizzes and practice/competitive programming/company interview Questions.

www.geeksforgeeks.org