如果对象满足特定条件,则从 Map 中删除条目

我有一个对象映射,如果对象属性满足特定条件,我想从映射中删除它。


地图如下


Map<String, ExchangeSummaryItem> under20 = mapper.readValue(new URL("https://rsbuddy.com/exchange/summary.json"), new TypeReference<Map<String, ExchangeSummaryItem>>() {});

每个 ExchangeSummary 都有一个sell_average、sell_quantity和buy_quantity,如果sell_average > 2000,并且买入/卖出数量均为 0,我想将其从地图中删除。


我当前的代码如下所示,但无法成功从映射中删除任何值(映射仍然具有相同的大小)


for (ExchangeSummaryItem item : under20.values()) {

     int ObjSellAverage = item.getSellAverage();

     int ObjSellQ = item.getSellQuantity();

     int ObjBuyQ = item.getBuyQuantity();


     if (ObjSellAverage > 20000 && ObjSellQ == 0 && ObjBuyQ == 0){

          System.out.println(under20.size());

          under20.remove(item);

     }

}

任何关于为什么会发生这种情况的帮助将不胜感激!谢谢!


慕田峪4524236
浏览 92回答 1
1回答

皈依舞

under20.remove(item);是使用值进行调用。它期待钥匙。你也不能只是改为迭代和调用,因为你会有一个.removeunder20.keySet()removeConcurrentModificationException解决它的一种简单方法是创建另一个地图:Map<String, ExchangeSummaryItem> result = new HashMap<>();//Map.entrySet() gives you access to both key and value.for (Map.Entry<String,ExchangeSummaryItem> item : under20.entrySet()) {&nbsp; &nbsp; &nbsp;int ObjSellAverage = item.getValue().getSellAverage();&nbsp; &nbsp; &nbsp;int ObjSellQ = item.getValue().getSellQuantity();&nbsp; &nbsp; &nbsp;int ObjBuyQ = item.getValue().getBuyQuantity();&nbsp; &nbsp; &nbsp;if (!(ObjSellAverage > 20000 && ObjSellQ == 0 && ObjBuyQ == 0)){&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; result.put(item.getKey(), item.getValue());&nbsp; &nbsp; &nbsp;}}并在result
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Java