removeEldestEntry

时间:2011-01-27 12:16:27

标签: java collections linkedhashmap

如何借助removeEldestEntryFileOutputStreamDataOutputStream覆盖writeObject()方法,将最长的条目保存到文件中。代码。

以下是示例:

import java.util.*;

public class level1 {
private static final int max_cache = 50;
private Map cache = new LinkedHashMap(max_cache, .75F, true) {
    protected boolean removeEldestEntry(Map.Entry eldest) {
        return size() > max_cache;
    }
};


public level1() {
    for (int i = 1; i < 52; i++) {
        String string = String.valueOf(i);
        cache.put(string, string);
        System.out.println("\rCache size = " + cache.size() +
                           "\tRecent value = " + i + " \tLast value = " +
                           cache.get(string) + "\tValues in cache=" +
                           cache.values());

    }

2 个答案:

答案 0 :(得分:8)

您的代码已基本完成:

private Map cache = new LinkedHashMap(max_cache, .75F, true) {
    protected boolean removeEldestEntry(Map.Entry eldest) {
       // Pseudo-Code 
       if(this.size() > MAX_CACHE_SIZE){
           FileOutputStream fos = new FileOutputStream("t.tmp");
           ObjectOutputStream oos = new ObjectOutputStream(fos);

           oos.writeObject(eldest.getValue());
           return true;
       } finally {
           oos.close();
           fos.close();
       }

       return false;
    }
};

答案 1 :(得分:1)

  • 致电super.removeEldestEntry
  • 如果删除了某个项目,请打开OutputStream
  • 写出对象
  • 从超级电话中返回布尔值。