我怎样才能比较两个输入值到两个数组

这个问题在这里已经有了答案:

  • HashMap,LinkedHashMap和TreeMap之间的区别16个答案

  • 因此,基于我所看到的,存在有直接关系userNameArraypasswordArray ,这意味着在价值nuserNameArray在对应于值npasswordArray

    这意味着您的整个搜索可以归结为单个if语句...

    for (int index = 0; index < userNameArray.length; index++) {
        if (str1.equals(userNameArray[index]) && str2.equals(passwordArray[index])) {
            return true;
        }
    }
    return false
    

    现在,话说回来,如果你有某种简单的旧Java对象(PO​​JO)封装了用户名和密码,它可以提供验证功能

    链接地址: http://www.djcxy.com/p/92181.html

    上一篇: How can i compare two input values to two arrays

    下一篇: who is faster hashmap.get or treemap.get in java