concurrentModificationException繰り返し中にアレイリストを変更しながら
しかし、アレイリストを変更すると(新しい要素を追加することで)iteratorを使用して繰り返すと、concurrentModificationexceptionを引き起こす可能性があります。 iteration:
list
for (Iteratorit = mElements.iterator(); it.hasNext();){ Element element = it.next(); // Check element's position and other conditions... if(element.cFlag){ mElements.add(new Element("crack",getResources(), (int)touchX,(int)touchY)); // ConcurrentModificationException occurs here element.cFlag = false; } }
代替アプローチ:
別のアプローチは、リストのコピーを反復する強化されたforループを使用して、要素の要素:を防ぐことができます。 //要素の位置やその他の条件を確認してください... if(element.cflag){ Melements.Add(new Element( "crack"、getResources()、(int)touchx、(int)touchy)); // concurrentModificationExceptionはありません element.cflag = false; } }
免責事項: 提供されるすべてのリソースの一部はインターネットからのものです。お客様の著作権またはその他の権利および利益の侵害がある場合は、詳細な理由を説明し、著作権または権利および利益の証拠を提出して、電子メール [email protected] に送信してください。 できるだけ早く対応させていただきます。
Copyright© 2022 湘ICP备2022001581号-3