You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
아래와 같이 index를 기준으로 삭제하는 메소드와 Object을 삭제하는 메소드가 있음.
아래와 같이 -3, -2, -1, 0, 1, 2 를 대입하고 0 ~ 3까지 삭제하면
[-3, -2, -1] 의 출력을 예상하지만, 실제로는 [-2, 0, 2] 가 출력된다.
index를 기준으로 삭제하기 때문
따라서 Object를 상속받는 Integer로 형변환 후 remove를 해야 원하는 결과가 출력됨
Eremove(intindex);
booleanremove(Objecto);
// 조심할 것List<Integer> list = newArrayList<>();
for (inti = -3; i < 3; i++) {
list.add(i);
}
for (inti = 0; i < 3; i++) {
list.remove(i);
//list.remove((Integer) i); 0~3 까지 값을 제거해주기 위한 처리
}
catalina.out 용량
List의 remove
Java 버전에 맞는 Tomcat
http://tomcat.apache.org/whichversion.html
The text was updated successfully, but these errors were encountered: