Array 기본
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// import
import java.util.Arrays;
// 선언
String[] weeks = {"월", "화", "수", "목", "금", "토", "일"};
// 길이
String[] weeks = {"월", "화", "수", "목", "금", "토", "일"};
for (int i=0; i<weeks.length; i++) {
System.out.println(weeks[i]);
}
// 아래처럼 == 연산자 쓰면 잘못된 결과 도출(주소값 비교를 한다)
String a = "hello";
String b = new String("hello");
System.out.println(a.equals(b)); // true
System.out.println(a==b); // false
// 정렬
Arrays.sort(data);
ArrayList
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
// import
import java.util.List;
import java.util.ArrayList;
// 생성 및 추가
ArrayList pitches = new ArrayList();
pitches.add("138");
pitches.add("129");
pitches.add("142");
// get
ArrayList pitches = new ArrayList();
pitches.add("138");
pitches.add("129");
pitches.add("142");
// size
System.out.println(pitches.size());
// remove(object)
System.out.println(pitches.remove("129"));
// remove(index)
System.out.println(pitches.remove(0));
// String type으로 쓸 경우(Generics)
ArrayList<String> aList = new ArrayList<String>();
// 정렬