반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- vscode
- Eclipse
- windows
- js
- json
- input
- Files
- 이클립스
- javascript
- 자바
- html
- Maven
- CMD
- date
- 테이블
- 배열
- 문자열
- list
- Java
- 인텔리제이
- Visual Studio Code
- 자바스크립트
- string
- CSS
- Button
- IntelliJ
- Array
- table
- ArrayList
- 이탈리아
Archives
- Today
- Total
어제 오늘 내일
[Java] ArrayList의 첫번째, 마지막 index 구하기 본문
ArrayList의 첫번째 index는 "0"이고,
마지막 index는 "ArrayList의 길이 - 1" 입니다.
위와 같은 ArrayList가 있고,
이 ArrayList에 5개의 element가 있을 때,
ArrayList의 index는 0부터 시작하기 때문에,
첫번째 index는 "0"이고,
마지막 index는 "ArrayList의 길이 - 1"입니다.
코드
import java.util.ArrayList;
import java.util.List;
public class ArrayListFirstLastIndex {
public static void main(String[] args) {
// ArrayList 준비
List<String> arrayList = new ArrayList<String>();
arrayList.add("A");
arrayList.add("B");
arrayList.add("C");
arrayList.add("D");
arrayList.add("E");
// 첫번째, 마지막 index
int firstIndex = 0;
int lastIndex = arrayList.size() - 1;
// 결과 출력
System.out.println("첫번째 index : " + firstIndex); // 0
System.out.println("첫번째 index의 값 : " + arrayList.get(firstIndex)); // A
System.out.println("마지막 index : " + lastIndex); // 4
System.out.println("마지막 index의 값 : " + arrayList.get(lastIndex)); // E
}
}
결과
첫번째 index : 0
첫번째 index의 값 : A
마지막 index : 4
마지막 index의 값 : E
위 코드의 arrayList는 "A", "B", "C", "D", "E" 이렇게 5개의 문자열을 가지고 있습니다.
arrayList의 첫번째 index는 0이고,
마지막 index는 "전체 arrayList의 크기 - 1"입니다.
ArrayList의 전체 크기는 size() 메소드를 사용하여 구합니다.
반응형
'IT > Java' 카테고리의 다른 글
[Java] ArrayList 복사하기 (Shallow Copy, Deep Copy) (0) | 2021.05.15 |
---|---|
[Java] ArrayList의 첫번째, 마지막 index 값 삭제하기 (0) | 2021.05.15 |
[Java] ArrayList에서 특정 값 삭제하기 (0) | 2021.05.07 |
[Java] List에서 특정 값 개수 세기 (0) | 2021.05.06 |
[Java] ArrayList의 맨 앞에 값 / ArrayList 추가하기 (0) | 2021.05.06 |
Comments