哪里是google-collection的LazyMap?

时间:2010-02-08 19:31:46

标签: java collections guava

我最喜欢的apache commons-collections之一是LazyMap,它会在执行map.get(newKey); // Will not return null!时使用Transformer实时实例化值。

为什么谷歌收藏品不一样?

3 个答案:

答案 0 :(得分:18)

Hey lookIt does

它被称为new MapMaker().makeComputingMap(Function<? super K, ? extends V> computer)

真棒。

请注意,map maker是一个工厂 - 你可以创建一个,设置所有对象引用类型,扩展属性(甚至是对象到期时间!),然后再创建大量计算映射(或其他类型) )一行电话。

e.g。就像google-collections库中的所有其他内容一样,它非常好 - 一旦你弄清楚'它'在哪里

答案 1 :(得分:7)

从10.0开始,番石榴改为使用新的CacheBuilder类,并且它与gwt兼容。

These are the differences

答案 2 :(得分:-1)

我建议你自己编写

public class LazyMap<K, V> extends ForwardingMap<K, V> {
    final Function<? super K, ? extends V> factory;
    final Map<K, V> delegate;

    public static <K, V> LazyMap<K, V> lazyMap(final Map<K, V> map, final Supplier<? extends V> supplier) {
        return new LazyMap<>(map, supplier);
    }

    public static <K, V> LazyMap<K, V> lazyMap(final Map<K, V> map, final Function<? super K, ? extends V> factory) {
        return new LazyMap<>(map, factory);
    }

    private LazyMap(final Map<K, V> map, final Function<? super K, ? extends V> factory) {
        this.factory = factory;
        this.delegate = map;
    }

    private LazyMap(final Map<K, V> map, final Supplier<? extends V> supplier) {
        this.factory = Functions.forSupplier(supplier);
        this.delegate = map;
    }

    @Override
    protected Map<K, V> delegate() {
        return delegate;
    }

    @Override
    public V get(final Object key) {
        if (delegate().containsKey(key) == false) {
            @SuppressWarnings("unchecked")
            final K castKey = (K) key;
            final V value = factory.apply(castKey);
            delegate().put(castKey, value);
            return value;
        }
        return delegate().get(key);
    }

}