码迷,mamicode.com
首页 > 其他好文 > 详细

ConcurrentHashMap putIfAbsent和的put区别

时间:2016-12-14 02:39:30      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:concurrenthashmap putifabsent

putIfAbsent:

        当key不存在的时候调用put方法将key存入进map

        当key存在的时候相当于return map.get(key)

  public static void main(String[] args) {
        ConcurrentHashMap map = new ConcurrentHashMap();
        Object o = map.putIfAbsent("aaa", "bbb");
        System.out.println("111"+o);
        Object o1 = map.putIfAbsent("aaa", "bbb");
        System.out.println("222"+o1);

    }

输出

111null
222bbb

put    

    与之hashMap相同,当key存在时,put同样的key将被覆盖

本文出自 “幕后黑手” 博客,请务必保留此出处http://11942699.blog.51cto.com/11932699/1882402

ConcurrentHashMap putIfAbsent和的put区别

标签:concurrenthashmap putifabsent

原文地址:http://11942699.blog.51cto.com/11932699/1882402

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!