如何获得地图中的关键位置?我怎样才能看到"奥迪"和"宝马"的位置?
Map<String, Integer> map = new HashMap<String, Integer>(); map.put("Audi", 3); map.put("BMW", 5);
java
java ×1