removeEldestEntry - PullRequest
       20

removeEldestEntry

3 голосов
/ 27 января 2011

Как переопределить метод removeEldestEntry для сохранения старшей записи в файл с помощью FileOutputStream, DataOutputStream и 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 ]

8 голосов
/ 27 января 2011

Ваш код почти завершен:

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 голос
/ 27 января 2011
  • Вызов super.removeEldestEntry
  • Если элемент был удален, откройте OutputStream
  • Запишите объект
  • Верните логическое значение из супер-вызова.
...