기술(Tech, IT)/자바(Java)
[Java] ArrayList
Daniel803
2021. 7. 5. 11:38
ArrayList는 java.util 패키지에 포함된 크기 재지정이 가능한 배열이다. 자바에서 array와 ArrayList의 차이는 크기 변경이 가능 유무로, ArrayList는 사용자가 원할 때 요소에 대한 추가와 삭제가 가능하다.
- W3schools
The ArrayList class is a resizable array, which can be found in the java.util package.
The difference between a built-in array and an ArrayList in Java, is that the size of an array cannot be modified (if you want to add or remove elements to/from an array, you have to create a new one). While elements can be added and removed from an ArrayList whenever you want.
출처
반응형