어떻게 JAVA 에서 고정 최대 크기 의 hashMap 을 실현 합 니까?
2326 단어 HashMap
링크 드 HashMap 의 removeEldestEntry 방법 을 이용 하여 이 방법 을 다시 불 러 오 면 이 map 는 최대 size 로 늘 어 날 수 있 습 니 다. 그 후에 새로운 기록 을 삽입 할 때마다 가장 오래된 기록 을 삭제 합 니 다.
import java.util.LinkedHashMap;
import java.util.Map;
public class MaxSizeHashMap<K, V> extends LinkedHashMap<K, V> {
private final int maxSize;
public MaxSizeHashMap(int maxSize) {
this.maxSize = maxSize;
}
//
//Returns true if this map should remove its eldest entry.
//This method is invoked by put and putAll after inserting a new entry into the map.
//It provides the implementor with the opportunity to remove the eldest entry each time a new
//one is added. This is useful if the map represents a cache:
// it allows the map to reduce memory consumption by deleting stale entries.
//
@Override
protected boolean removeEldestEntry(Map.Entry<K, V> eldest) {
return size() > maxSize;
}
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[백준 1411] 비슷한 단어 (JAVA)원본 알파벳이 숌하게 바뀔 경우, 이를 HashMap을 이용해서 쌍으로 묶어준다. HashMap 사용법이 익숙하지 못 해서 어려웠던 문제이다. HashMap 사용법 30분 💬 투포인터 버전 참고...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.