java linkedhashmap 用法_java – LinkedHashMap.removeEldestEntry的用法是什么?

removeEldestEntry在元素插入后总是被检查.例如,如果覆盖方法总是返回true,那么LinkedHashMap将永远是空的,因为在每次put或putAll插入后,最老的元素都将被删除,无论如何. JavaDoc显示了一个非常明智的例子,说明如何使用它:

protected boolean removeEldestEntry(Map.Entry eldest){

return size() > MAX_SIZE;

}

换一种方式,如果不重要,您可能只想删除一个条目:

protected boolean removeEldestEntry(Map.Entry eldest){

if(size() > MAX_ENTRIES){

if(isImportant(eldest)){

//Handle an important entry here, like reinserting it to the back of the list

this.remove(eldest.getKey());

this.put(eldest.getKey(), eldest.getValue());

//removeEldestEntry will be called again, now with the next entry

//so the size should not exceed the MAX_ENTRIES value

//WARNING: If every element is important, this will loop indefinetly!

} else {

return true; //Element is unimportant

}

return false; //Size not reached or eldest element was already handled otherwise

}

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值