arraylist1 [자료구조] ArrayList - 가장 대표적인 List형태의 자료구조이다. - 이어 쓰고 읽기에 가장 적합한 구조이다.(연속된 메모리 공간을 사용) - ArrayList의 크기는 자동으로 조정된다. - 동기화를 제공하지 않는다. ArrayList 생성 import java.util.ArrayList; ArrayList integers1 = new ArrayList(); // 타입 지정 ArrayList integers2 = new ArrayList(); // 타입 생략 가능 ArrayList integers3 = new ArrayList(10); // 초기 용량(Capacity) 설정 ArrayList integers4 = new ArrayList(integers1); // 다른 Collection값으로 초기화 ArrayList i.. 2023. 11. 3. 이전 1 다음