티스토리 뷰
import java.util.ArrayList;
import java.util.Arrays;
public class ArrayVsArrayList {
public static void main(String[] args) {
// Arrays 특징
// - 제네릭 불가능(불안전 유형)
// - 생성시 크기가 고정되며 확장하거나 축소 할 수 없다.
// - 초기화 시 메모리에 할당되며, 고정크기여서 속도가 빠르다.
// String[] friendsArray = new String[4];
String[] friendsArray = {"John", "Chris", "Eric", "Luke"};
// ArrayList 특징
// - 제네릭 가능(안전한 유형)
// - 요소의 수에 따라 자동으로 확장 및 축소 한다.
// - 확장 및 축소시 메모리를 재할당하며, 동적 특성 때문에 상대적으로 느리다.
// ArrayList<String> friendsArrayList = new ArrayList<>();
ArrayList<String> friendsArrayList = new ArrayList<>(Arrays.asList("John", "Chris", "Eric", "Luke"));
// Get element
System.out.println(friendsArray[1]);
System.out.println(friendsArrayList.get(1));
// Get size
System.out.println(friendsArray.length);
System.out.println(friendsArrayList.size());
// Add an element
// Array는 요소의 크기가 고정되어 있기 때문에 요소를 추가할 수 없다.
friendsArrayList.add("Mitch");
System.out.println(friendsArrayList.get(4));
// Set an element
friendsArray[0] = "Carl";
System.out.println(friendsArray[0]);
friendsArrayList.set(0, "Carl");
System.out.println(friendsArrayList.get(0));
// Remove and element
// Array는 고정된 크기 때문에 요소를 제거할 수 없다.
friendsArrayList.remove("Chris");
System.out.println(friendsArrayList.get(1));
// Print
// - Array는 불편한 방법으로 print되며, ArrayList는 편한 방법으로 print된다.
System.out.println(friendsArray);
System.out.println(friendsArrayList);
}
}
'프로그래밍 > Back end' 카테고리의 다른 글
[Back end] Java Tutorial Map and HashMap (0) | 2022.03.25 |
---|---|
[Back end] Java Tutorial ArrayList VS LinkedList (0) | 2022.03.20 |
[Back end] RestTemplate SSL ignore (PKIX path building failed) (0) | 2021.04.08 |
[Back end] Json String to List Map (0) | 2021.03.16 |
[Back end] Spring Get List request (0) | 2021.03.08 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
링크
TAG
- effective java
- 이직
- 오라클 내장 함수
- Maven
- 리액트
- 경력관리
- 자바
- 프로그래머
- spring
- 제주도 여행
- javascript
- SQL
- 프로그래머스
- 성능분석
- 오라클
- 리눅스 명령어
- sort algorithm
- 제주도 3박4일 일정
- 정렬 알고리즘
- Linux 명령어
- Tomcat
- Collection
- Eclipse
- Java
- 개발환경
- 자바스크립트
- 회고
- 소프트웨어공학
- React
- 리액트 16
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함