我在數據庫項目中有6條記錄。 For循環讀取每條記錄,然後檢查轉換爲動態數組的結果。 但是 For循環無法繼續直到結束! For循環檢查第三條記錄!for()循環不會持續
int count = db.count_field("location", "id");
geoAttrs = new ArrayList<StructureGeo>();
StructureGeo geo = new StructureGeo();
for (int i = 0; i < count; i++) {
geo.lat = db.get_lat("location", i);
geo.lang = db.get_log("location", i);
geo.result = gps2m(latitude, longitude, geo.lat, geo.lang);
geoAttrs.add(geo);
Log.i("LOG", "Array Index #" + i + " = " + geoAttrs.get(i));
}
db.close();
}
編輯:
敬酒代碼之後:
int count = db.count_field("location", "id");
和結果:
帖子總計方法.. –
循環前檢查您的計數大小。 – Razgriz
請再檢查一次......我把照片放在烤麪包上 – Developer