首页 > 代码库 > ConcurrentHashMap putIfAbsent和的put区别
ConcurrentHashMap putIfAbsent和的put区别
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区别
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。