我有一个Map
这样的:
Map<String,GridCell> cellsMap
我将它传递给一个方法,该方法的返回应该包含一个Map
(比如说answerMap
),它包含cellsMap
map的所有条目以及一个包含 a作为 key 和 a作为 value的额外条目。就像是 :String
String
Map<String,Object> answerMap = new ConcurrentHashMap<String,Object>();
//answer should first contain all the map entries of cellsMap and then add an extra entry like the following
answer.put(getId(), getSelectionValue()); // getSelectionValue() returns a String that contains coordinates of the selected cells.
return answerMap;