我找不到任何地方是否有某种集合可以让我获得以下物品:SpecialArray specialArray = new SpecialArray()specialArray.put("first", someValue);specialArray.put("second", otherValue);//and then:object obj = specialArray["first"];//or:specialArray["second"] = anotherValue;这有点像HashMap<String, object>,但在 HashMap 中我只能通过map.get(String)更新值来获取值map.put(String, object)
添加回答
举报
0/150
提交
取消