官方注释翻译:将一对有序键(称为行键和列键)与单个值相关联的集合。 示例代码(需求: 记录各个公司每个部门的人数): Copy// HashMap Map<String, Integer> deptMap = new HashMap<>(); deptMap.put("A部门", 10); deptMap.put("B部门", 20); Map<String, Map<String, Integer>> ...