为什么 Map.putIfAbsent() 返回 null?
以下程序正在打印。我不明白为什么。null
public class ConcurrentHashMapTest {
    public static final Map<String, String> map = new ConcurrentHashMap<>(5, 0.9f, 2);
    public static void main(String[] args) {
        map.putIfAbsent("key 1", "value 1");
        map.putIfAbsent("key 2", "value 2");
        String value = get("key 3");
        System.out.println("value for key 3 --> " + value);
    }
    private static String get(final String key) {
        return map.putIfAbsent(key, "value 3");
    }
}
有人可以帮助我理解这种行为吗?