首页 > 代码库 > ConcurrentHashMap的putIfAbsent
ConcurrentHashMap的putIfAbsent
这个方法在key不存在的时候加入一个值,如果key存在就不放入,等价:
if (!map.containsKey(key)) return map.put(key, value); else return map.get(key);
测试代码:
public class Test { public static void main(String[] args) { ConcurrentHashMap<String,String> map=new ConcurrentHashMap<String,String>(); String temp=map.putIfAbsent("a", "gaoxing"); System.out.println(map.get("a")); temp=map.putIfAbsent("a","nihao"); System.out.println(map.get("a")); temp=map.putIfAbsent("a","gaoxing"); System.out.println(map.get("a")); }}
结果为
gaoxing
gaoxing
gaoxing
ConcurrentHashMap的putIfAbsent用来做缓冲相当不错,多线程安全的
ConcurrentHashMap的putIfAbsent
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。