7
我將如何去通過嵌套HashMap迭代?通過嵌套HashMap迭代
的HashMap
是設置這樣的:
HashMap<String, HashMap<String, Student>>
哪裏Student
是包含可變name
的對象。例如如果我的HashMap這個樣子(下面是不是我的代碼,它只是模擬HashMap中的內容可能是什麼)
hm => HashMap<'S', Hashmap<'Sam', SamStudent>>
HashMap<'S', Hashmap<'Seb', SebStudent>>
HashMap<'T', Hashmap<'Thomas', ThomasStudent>>
我怎麼能在所有的單字母鍵的迭代然後每個全名鍵,然後拔出學生的名字?
完美和最好的代碼用於遍歷HashMaps這樣的包含HashMap。謝謝佈雷特 – vkrams 2017-03-11 23:59:50