迭代一個列表,我這是一個列表需要邏輯在Java
List < TempVO> lstTemp = new ArrayList < TempVO>();
TempVO
是包含
zoneId,tempId and tempValue
現在名單將有條目類似下面提到
類zoneId tempId tempValue
-----------------------
2/ 1 /check
2 / 3 /check
2 / 4 /check
2 /4 /entered1
3 / 5 /check
3 /8 /primary
3 / 6/ check
3 / 8 /check
我的要求是從列表中刪除與tempValue= check
條目,如果它有2 en嘗試對同一zoneId
和tempId
(I,E)我的新名單應該包含
zoneId tempId tempValue
-----------------------
2/ 1 /check
2 / 3 /check
2 /4 /entered1
3 / 5 /check
3 /8 /primary
3 / 6/ check
我如何做到這一點?
如前所述,這個問題似乎沒有解決您的問題的更廣泛的應用。你能否重新翻譯它,使它對更廣泛的受衆變得更有用? –
假設你在你的arrayList中有** tempValue = primary **。那麼同樣的檢查也適用於它,或者你只需要** tempValue = check **。 –