这是一个示例方法:
public void loadStuff(Map<String, Object> someMap) {
  Map<String, Object> myMap = new HashMap<String, Object>();
  //I now load defaults here first
  myMap.put("One", someObject);
  myMap.put("two", someObject);
  myMap.put("three", someObject);
  //Now I put the entire someMap so that only those keys that are present in someMap are overridden in myMap and others remain default.
  myMap.putAll(someMap);
}
现在,是否有更好的方法来执行这些冗余放置,因为我的场景中的默认数量很多。