循环访问嵌套哈希映射
如何迭代嵌套的哈希映射?
设置如下:HashMap
HashMap<String, HashMap<String, Student>>
其中 是包含变量 的对象。例如,如果我的HashMap看起来像这样(以下不是我的代码,它只是为了模拟哈希映射的内容)Student
name
hm => HashMap<'S', Hashmap<'Sam', SamStudent>>
HashMap<'S', Hashmap<'Seb', SebStudent>>
HashMap<'T', Hashmap<'Thomas', ThomasStudent>>
我怎么能遍历所有单个字母键,然后每个全名键,然后拉出学生的名字?