Java程序检索HashMap中所有值的集合
首先,创建一个HashMap并添加元素-
HashMap hm = new HashMap();
hm.put("Wallet", new Integer(700));
hm.put("Belt", new Integer(600));
hm.put("Backpack", new Integer(1200));现在,检索所有值-
Collection getValues = hm.values();
System.out.println("\nValues...");
Iterator i = getValues.iterator();
while (i.hasNext()) {
System.out.println(i.next());
}以下是获取HashMap中所有值的集合的示例-
示例
import java.util.*;
public class Demo {
public static void main(String args[]) {
//创建哈希映射
HashMap hm = new HashMap();
hm.put("Wallet", new Integer(700));
hm.put("Belt", new Integer(600));
hm.put("Backpack", new Integer(1200));
System.out.println("Map = "+hm);
Collection getValues = hm.values();
System.out.println("\nValues...");
Iterator i = getValues.iterator();
while (i.hasNext()) {
System.out.println(i.next());
}
}
}输出结果
Map = {Backpack=1200, Belt=600, Wallet=700}
Values...
1200
600
700热门推荐
10 圣诞祝福语简短小学
11 祖国七十华诞简短祝福语
12 老师送的祝福语简短
13 生日祝福语大全女生简短
14 祝女性生日祝福语简短
15 牛年女神节祝福语简短
16 情人表白祝福语简短大气
17 老公开业祝福语简短
18 官宣新年祝福语简短