开发者

Java中Map的computeIfAbsent方法详解

开发者 https://www.devze.com 2023-12-02 10:18 出处:网络 作者: 啊几
目录前言代码实例例1例2总结前言 在jdk1.8中Map接口新增了一个computeIfAbsent方法,这是Map接口中的默认实现
目录
  • 前言
  • 代码实例
    • 例1
    • 例2
  • 总结

    前言

    在jdk1.8中Map接口新增了一个computeIfAbsent方法,这是Map接口中的默认实现

    default V computeIfAbsent(K key,
                Function<? super K, ? extends V> mappingFunction) {
            Objects.requireNonNull(mappingFunction);
            V v;
            if ((v = get(key)) == null) {
                V newValue;
                if ((newValue = mappingFunction.apply(key)) != null) {
                    put(key, newValue);
                    return newValue;
                }
            }
            return v;
        }

    该方法是首先判断缓存Map中是否存在指定的key的值,如果不存在,会调用mappingFunction(key)计算key的value,然后将key = value 放入缓存Map中。

    但如果mappingFunction(key)计算出来的value为null或抛出异常,则不会记录缓存。

    代码实例

    例1

    /**
     * 如果key对应的value值为nulljs,则在map中放入该key和设置相应的value
     */
    public class Test {
        public static void main(String[] args) {
            Map<Integer,Integer> map = new HashMap<>();
            /**
             * 方法1:使用方法引用
             */
            map.computeIfAbsent(1,Test::compute);
            /**
             * 方法2:使用匿名内部类
             */
            map.computeIfAbsent(1, new Function<Integerjs, Integer>() {
                @Override
                public Integer apply(Integer integer) {
                js    return integer;
     编程客栈           }
            });
            /**
             * 方法3:使用lambda
             */
            map.computeIfAbsent(1,key -> key);
            
            System.out.println(map.get(1));
        }
    
        static public Integer compute(Integer integer){
            return integer;
        }
    }
    

    例2

    /**
     * 统计List出现相同字符串的个数
     */
    public class Test {
        public static void main(String[] args) {
            Map<String,AtomicInteger> map = new HashMap<>();
            List<String> list = Arrays.asList(new String[]{"1","2","2","3","3","4","4","4"});
            list.forEach(str->map.computeIfAbsent(str,k->new AtomicInteger()).incrementAndGet());
            System.out.println(map);
        }
    }
    /**
     * {1=1, 2=2, 3=2, 4=3}
     */
    

    这里用编程客栈了两次lambda,和下面方法是一样

    /**
     * 统计List出现相同字符串的个数
     */
    public class Test {
        public static void main(String[] args) {
            Map<String,AtomicInteger> map = new HashMap<>();
            List<String> list = Arrays.asList(new String[]{"1","2","2","3","3","4","4","4"});
            list.forEach(new Consumer<String>() {
                @Override
                public void accept(String s) {
                    //寻找map中key对应的value,如果map不存在指定key的值则new 一个AtomicInteger对象并加入缓存map中,如果存在则取到对应的AtomicInteger对象并加一
                    map.computeIfAbsent(s, new Function<String, AtomicInteger>() {
                        @Override
                        public AtomicInteger apply(String s) {
                            return new AtomicInteger();
                        }
                    }).incrementAndGet();
                }
            });
            System.out.println(map);
        }
    }
    /**
     * {1=1, 2=2, 3=2, 4=3}
     */
    

    总结

    computeIfAbsent在一些实际开发场景中,能让我们代码看去更加简洁,代码质量看去也更高。

    到此这篇关于Java中Map的computeIfAbsent方法详解的文章就介绍到这了,更多相关Map的computeIfAbsent方法内容请搜索编程客栈(www.devze.com)以前的文章或继续浏览下面的相关文章希望大家以后多多支持编程客栈(www.devze.com)!

    0

    精彩评论

    暂无评论...
    验证码 换一张
    取 消

    关注公众号