for (car_gps car_gps : locList) {
if(car_gps.getGps_lat().contains("E")||car_gps.getGps_lng().contains("E")){ //排除异常坐标
locList.remove(car_gps);
}
}
PHP中文网2017-04-18 10:24:29
foreach循環列表時 是不能在循環體中remove被循環的列表的元素的。可以使用迭代器方式,或是先記錄下待刪除元素的index,for迴圈結束後再一併刪除對應下標的元素。