如何要求用户输入哈希表的密钥并返回对象值

时间:2018-02-22 21:22:34

标签: java input hash hashtable key-value

我有一个哈希表(theTable),String用户名作为键,Object员工作为值。我想要求用户输入用户名,如果用户输入的用户名等于theTable中的键,我想返回员工对象值。

System.out.println("Enter your username: ");
    Scanner sc = new Scanner(System.in);
    String UserSearch = sc.nextLine();
    if UserSearch == theTable.get(key)(){
        return Employee;
    }

theTable.get将返回映射的密钥,但我不确定如何检查/获取密钥以等于输入的用户名。

0 个答案:

没有答案