如何在Map java中检查元素重复[重复]

Posted

技术标签:

【中文标题】如何在Map java中检查元素重复[重复]【英文标题】:How to check element duplicate in Map java [duplicate] 【发布时间】:2018-05-17 17:45:16 【问题描述】:

我有一个函数,允许在 Map 中输入键和值。

这是我的代码

import java.util.HashMap;
import java.util.Map;
import java.util.Scanner;

public class MapDemo 
    public static void main(String[] args) 
        Scanner input = new Scanner(System.in);
        Map<String, Integer> map = new HashMap<>();
        System.out.println("Elemment number: ");
        String sNum = input.nextLine();
        int iNum = Integer.parseInt(sNum);
        for (int i = 0; i < iNum; i++) 
            System.out.println("Key: ");
            String sKey = input.nextLine();
            System.out.println("Value: ");
            String sValue = input.nextLine();
            int iValue = Integer.parseInt(sValue);
            map.put(sKey, iValue);
        
    

我不知道接下来如何检查元素,我将输入。和之前的element一样,如果一样我再输入一次。

【问题讨论】:

map.containsKey(sKey); 【参考方案1】:

在实现 Collection 接口的每个数据结构中都有一个 Collection.contains() 方法!!!!

【讨论】:

但是Map其实并不是一个Collection。 道歉。你可以做 Map.keySet() 然后运行 ​​Collection.contains() 检查!!!!!【参考方案2】:

添加一个while循环:

  public static void main(String[] args) 
    Scanner input = new Scanner(System.in);
    Map<String, Integer> map = new HashMap<>();
    System.out.println("Elemment number: ");
    String sNum = input.nextLine();
    int iNum = Integer.parseInt(sNum);
    for (int i = 0; i < iNum; i++) 
        String sKey ;
        do 
            System.out.println("Key: ");
            sKey = input.nextLine();
         while (map.containsKey(sKey));

        System.out.println("Value: ");
        String sValue = input.nextLine();
        int iValue = Integer.parseInt(sValue);
        map.put(sKey, iValue);
    
 

【讨论】:

非常感谢,成功了

以上是关于如何在Map java中检查元素重复[重复]的主要内容,如果未能解决你的问题,请参考以下文章

java map的key可以重复吗

JAVA:如何删掉list里面重复的Map?

如何删除数组中的空元素[重复]

如何检查变量是 Set 还是 Map [重复]

如何检查一个元素在列表中存在多少次[重复]

Java中的Map允许有重复元素吗