java. util. Concurrent ModificationException 은 무슨 뜻 입 니까?

1009 단어 자바Hibernate
java. util. Concurrent ModificationException 이상 은 자신 이 동시에 수정 할 수 없 기 때 문 입 니 다.
저 는 지금 '무한 등급 분류' 를 만 들 었 습 니 다. hibenate 는 관련 되 고 상품 을 추가 할 때 상품 유형의 하위 노드 만 추가 할 수 있 습 니 다. 먼저 모든 유형 을 찾 은 다음 에 하위 노드 가 없 는 결점 (즉, 하위 노드) 을 하나의 집합 에 넣 었 습 니 다. 저 는 먼저 이렇게 했 습 니 다.
 
List<Types> array=goodsServiceImpl.selectType();
if (array != null) {
			for (Types arr : array) {

				if (!arr.getTypeses().isEmpty()) {
					array.remove(arr);
				}
			}
		}

 
 나중에 자바 util. Concurrent ModificationException 이라는 이상 이 발생 했 습 니 다. 나중에 해결 방법 은 다음 과 같 습 니 다.
 
  :
List<Types> type = goodsServiceImpl.selectType();
		List<Types> array =new ArrayList<Types>();
		if (type != null) {
			for (Types arr : type) {

				if (!arr.getTypeses().isEmpty()) {
					
				}else{
					array.add(arr);
				}
			}
		}

좋은 웹페이지 즐겨찾기