java map判断是否有键_检查Java HashMap中是否存在给定键

使用该containsKey()方法并检查HashMap中是否存在给定键。

让我们首先创建HashMap并添加一些元素-//创建一个哈希映射

HashMap hm = new HashMap();

//将元素放入映射

hm.put("Bag", new Integer(1100));

hm.put("Sunglasses", new Integer(2000));

hm.put("Frames", new Integer(800));

hm.put("Wallet", new Integer(700));

hm.put("Belt", new Integer(600));

现在,我们需要检查键“ Bag”是否存在,为此,请使用如下containsKey()方法-hm.containsKey("Bag")

以下是检查HashMap中是否存在给定键的示例-

示例import java.util.*;

public class Demo {

public static void main(String args[]) {

//创建一个哈希映射

HashMap hm = new HashMap();

//将元素放入映射

hm.put("Bag", new Integer(1100));

hm.put("Sunglasses", new Integer(2000));

hm.put("Frames", new Integer(800));

hm.put("Wallet", new Integer(700));

hm.put("Belt", new Integer(600));

//获取一组条目

Set set = hm.entrySet();

System.out.println("Elements in HashMap...");

//获取一个迭代器

Iterator i = set.iterator();

//显示元素

while(i.hasNext()) {

Map.Entry me = (Map.Entry)i.next();

System.out.print(me.getKey() + ": ");

System.out.println(me.getValue());

}

System.out.println();

System.out.println("Does Bag exist in the HashMap = "+hm.containsKey("Bag"));

}

}

输出结果Elements in HashMap...

Frames: 800

Belt: 600

Wallet: 700

Bag: 1100

Sunglasses: 2000

Does Bag exist in the HashMap = true

  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值