Home > Java > JavaBase > body text

How to determine whether the key exists in map in java

coldplay.xixi
Release: 2023-01-13 00:39:47
Original
29310 people have browsed it

The method for map in java to determine whether a key exists: 1. Judge through [containsKey("key")]; 2. Judge through the [hasNext()] method, the code is [Set set = map. keySet();].

How to determine whether the key exists in map in java

The operating environment of this tutorial: windows7 system, java10 version, DELL G3 computer. This method is suitable for all brands of computers.

How to determine whether the key exists in map in java:

Method 1:

Through containsKey(" key") to judge, for example:

  Map<String,String> map= new HashMap<String,String>();
    map.put("key","value");
    boolean isEmpty=map.containsKey("key");
Copy after login

Method 2:

Use the hasNext() method to judge, for example:

Set set = map.keySet();
Iterator it = set.iterator();
//通过判断是否存在下一个,来遍历map集合
while (it.hasNext()) {
}
Copy after login

or

Iterator it= map.entrySet().iterator();
//通过判断是否存在下一个,来遍历map集合
while (it.hasNext()) {
}
Copy after login

Related free learning recommendations: java basic tutorial

The above is the detailed content of How to determine whether the key exists in map in java. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!