- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我使用 removeEldestEntry(Map.Entry eldest)
实现 LRU 缓存时 removeEldestEntry(Map.Entry eldest)
不起作用。
预期输出= 1,-1,2
实际输出 = 1,1,2
这里 set 方法放置条目,get 检索条目(如果存在),否则返回 -1:
import java.util.*;
import java.lang.*;
import java.io.*;
class LRUCache extends LinkedHashMap {
int capacity;
LinkedHashMap map = new LinkedHashMap(capacity ,1.1f,true);
public LRUCache(int capacity) {
this.capacity = capacity;
}
public int get(int key) {
if(map.containsKey(key)) {
return (int) map.get(key);
}
return -1;
}
public void set(int key, int value) {
map.put(key,value);
}
protected boolean removeEldestEntry(Map.Entry eldest) {
return map.size()>capacity;
}
public static void main(String args[]) {
LRUCache lru=new LRUCache(1);
int temp;
lru.set(2,1);
temp=lru.get(2);
System.out.println(temp);
lru.set(3,2);
temp=lru.get(2);
System.out.println(temp);
temp=lru.get(3);
System.out.println(temp);
}
}
最佳答案
您的removeEldestEntry
从未被使用过。为了使用您的 removeEldestEntry
,您的类必须扩展 LinkedHashMap
并且您应该覆盖 LinkedHashMap
的 removeEldestEntry
.
如果您使用 LinkedHashMap
作为缓存,它将使用 removeEldestEntry
的默认实现,即:
protected boolean removeEldestEntry(Map.Entry<K,V> eldest) {
return false;
}
关于java-removeEldestEntry(Map.Entry eldest) 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31700446/
我在附加源代码时看到了 LinkedHashMap.eldest() 方法,但无法使用它。 知道为什么它不可用吗? 最佳答案 这是一个隐藏方法 - 可使用反射调用,但不是公共(public) API
当我使用 removeEldestEntry(Map.Entry eldest) 实现 LRU 缓存时 removeEldestEntry(Map.Entry eldest) 不起作用。 预期输出=
尝试在图形编辑 View 中加载特定布局文件时出现以下异常。这在我下载了最新的 ADT (Version 20) 和 SDK API Level 16 后开始: java.lang.NoSuchMet
我是一名优秀的程序员,十分优秀!