Java可以使用String作为索引数组键吗? 例: array["a"] = 1; 没有。 要做这样的事情,你必须使用一个地图。 Map<String, Integer> aMap = new HashMap<String, Integer>(); aMap.put("a" , Integer.valueOf(1)); 不– 你想要一个地图来做到这一点: Map<String, Integer> map = new HashMap...