像这样创建 HashMap 的最简单方法是什么:
( student1 => Map( name => Tim,
Scores => Map( math => 10,
physics => 20,
Computers => 30),
place => Miami,
ranking => Array(2,8,1,13),
),
student2 => Map (
...............
...............
),
............................
............................
);
我试过这个:
HashMap record = new HashMap();
record.put("student1", new HashMap());
record.get("student1").put("name","Tim");
record.get("student1").put("Scores", new HashMap());
但我得到错误。我这样做是因为它record.get("student1")
是一个 HashMap 对象,所以我假设put
它应该可以工作,依此类推。
如果它不起作用,最好的方法是什么?