次のような HashMap があります。
( student1 => Map( name => Tim,
Scores => Map( math => 10,
physics => 20,
Computers => 30),
place => Miami,
ranking => Array(2,8,1,13),
),
student2 => Map (
...............
...............
),
............................
............................
);
キーは特定のタイプ (オブジェクト、文字列、整数など) ではないため、この複雑な HashMap をどのように「飛び込む」ことができますか?
編集:「ダイブ」とは、すべてのキーと値を反復処理することを意味します。