我有一个哈希表(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将返回映射的密钥,但我不确定如何检查/获取密钥以等于输入的用户名。