如何往HashMap里通过循环添加值?
通过循环的方式给Hash Map添加值public static void main(String[] args) {
HashMap<String, Integer> dicHero = new HashMap<>();
for(int i = 0; i < 3; i++){
dicHero.put("hero-",(int)(Math.random()*10000));
}
System.out.println(dicHero);
}
三个元素,key都叫hero-,value是三个随机数。用for循环后,最后只能输出最后一个键值对。 emmm,不用回答了,是我脑残了……{:10_247:}
页:
[1]