我有一个类,其中有几个数据结构,其中有一个哈希图。但我希望哈希图具有默认值,所以我需要预加载它。既然我不能在对象中使用 put 方法,我该怎么做?
class Profile
{
HashMap closedAges = new HashMap();
closedAges.put("19");
}
我用这个修复了它,但我必须在对象中使用一个方法。
class Profile
{
HashMap closedAges = loadAges();
HashMap loadAges()
{
HashMap closedAges = new HashMap();
String[] ages = {"19", "46", "54", "56", "83"};
for (String age : ages)
{
closedAges.put(age, false);
}
return closedAges;
}
}