반응형
Q.
ArrayList[] j = new ArrayList[4];
which gave me some nullPointer errors when I tried to add items to j[0].
A.
all the entries from your array will be pointing to null instead of an ArrayList.
After you create an array, you could loop through it and assign an ArrayList to each entry, that way you will not have those nasty null-pointer exceptions. Example:
ArrayList[] myList = new ArrayList[4];
for(int i = 0; i < myList.length; i++) {
myList[i] = new ArrayList();
}
ㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎㅎ
ㅓ허허허허허허ㅓ허허ㅓ허허헣허허허허헣
그런것이었다.
출처 : http://sdeva.tistory.com/entry/%EC%98%A4%EB%8A%98%EC%9D%98-%EC%82%BD%EC%A7%88-%EA%B0%9C%EC%B2%B4-%EC%B0%B8%EC%A1%B0%EA%B0%80-%EA%B0%9C%EC%B2%B4%EC%9D%98-%EC%9D%B8%EC%8A%A4%ED%84%B4%EC%8A%A4%EB%A1%9C-%EC%84%A4%EC%A0%95%EB%90%98%EC%A7%80-%EC%95%8A%EC%95%98%EC%8A%B5%EB%8B%88%EB%8B%A4
반응형
'▩▩ 프로그래밍 ▩▩ > C#' 카테고리의 다른 글
[C#] Delegate, 자식 폼에게서 값 받기 (2) | 2013.10.11 |
---|---|
[C#] OpenFileDialog, SaveFileDialog (0) | 2013.10.11 |
[C#] treeView 더블클릭 트리 펴지는거(Expand) 막기 (0) | 2013.10.11 |
[C#] DataGridView 값 접근 (0) | 2013.10.07 |
[C#] XML 다루기 (0) | 2013.09.30 |
[C#] 날짜 계산 (0) | 2013.09.30 |
[C#] 텍스트박스, 라디오버튼 탭 순서 (0) | 2013.09.27 |
[C#] DataGridView 마우스 우클릭 메뉴 (0) | 2013.09.26 |