我找不到任何地方是否有某种集合可以让我获得以下物品:
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)
HUWWW
红糖糍粑
相关分类