我有这样的地图设置:
Map<Integer, Set<Long>> myMap = new HashMap<Integer, Set<Long>>();
我正在尝试将我的第一个值添加到myMap
这样的:
myMap.put(1, myMap.get(1).add(myLong));
java返回这个:
The method put(Integer, Set<Long>) in the type Map<Integer, Set<Long>> is not applicable for the arguments (int, boolean)