1

我在网上查看过,但我无法解决我遇到的问题。我正在使用 hashMap 创建员工商店,但我不确定是否应该像当前版本一样打印 toString() 或 theEntry.getKey()。使用 getKey() 方法时,我得到错误的输出,即:

*员工在公司。*** 员工姓名:James O' Carroll 员工 ID:James O' Carroll 电子邮件:James O' Carroll

正如您在 MainApp 中看到的,我想要 Store.add(new Employee ("James O' Carroll", 18,"hotmail.com")); 成为输出。

我将粘贴我的代码:

//MainApp.
public class MainApp
{

    public static void main(String[] args)
    {
        new MainApp().start();

    }
    public void start()
    {
        EmployeeStore Store = new EmployeeStore();
        Store.add(new Employee ("James O' Carroll", 18,"hotmail.com"));
        Store.print();

    }

}

//Employee
//Imports:

//********************************************************************
//Employee Class.
public class Employee
{
//Variables.
    private String employeeName;
    private int employeeId;
    private String employeeEmail;
//********************************************************************  
//Constructor.
    public Employee(String employeeName, int employeeId, String employeeEmail) 
    {
        this.employeeName = employeeName;
        this.employeeId = employeeId;
        this.employeeEmail = employeeEmail;
    }
//********************************************************************
//Getters.
    public String getEmployeeEmail() {
        return employeeEmail;
    }
    public void setEmployeeEmail(String employeeEmail) {
        this.employeeEmail = employeeEmail;
    }
    public String getEmployeeName() {
        return employeeName;
    }
    public int getEmployeeId() {
        return employeeId;
    }
//********************************************************************
//toString method.
    public String toString() {
        return "Employee [employeeName=" + employeeName + ", employeeId="
                + employeeId + ", employeeEmail=" + employeeEmail + "]";
    }
//********************************************************************





}

//EmployeeStore.
//Imports.
import java.util.HashMap;
//********************************************************************
import java.util.Map;

public class EmployeeStore 
{
    HashMap<String, Employee> map;

//Constructor.  
    public EmployeeStore()
    {
        map = new HashMap<String,Employee>();
    }
//********************************************************************
//Hashmap Methods.
//Add to the Hashmap : Employee.
    public void add(Employee obj)
    {

        map.put(obj.getEmployeeName(), obj);
    }
//********************************************************************
//Remove from the Hashmap : Employee.
    public void remove(String key)
    {
      //Remove the Employee by name.
        map.remove(key);
    }
//********************************************************************
//Print the Hashmap : Employee. 
    public void print()
    {
        System.out.println("\n********Employee's in the Company.********");
        for(Map.Entry<String, Employee> theEntry : map.entrySet())
        {
            System.out.println("Employee Name:\t" + theEntry.getKey());
            System.out.println("Employee Id:\t" + theEntry.getKey());
            System.out.println("E-mail:\t "+ theEntry.getKey());

        }
    }


//********************************************************************  
//********************************************************************


}
4

2 回答 2

3

这显然是错误的:

for(Map.Entry<String, Employee> theEntry : map.entrySet())
{
    System.out.println("Employee Name:\t" + theEntry.getKey());
    System.out.println("Employee Id:\t" + theEntry.getKey());
    System.out.println("E-mail:\t "+ theEntry.getKey());
}

您打印了 3 次相同的值 - 怎么可能是姓名、ID电子邮件地址?您正在从条目中打印密钥,该密钥始终是名称。您想要条目的

你要这个:

// This assumes you've renamed all the properties in Employee to be more
// sensible - there's no point in including the "employee" part - we already
// know we're calling a method on Employee
for (Employee employee : map.values())
{
    System.out.println("Employee Name:\t" + employee.getName());
    System.out.println("Employee Id:\t" + employee.getId());
    System.out.println("E-mail:\t "+ employee.getEmail());
}

(或者当然只是打印employee。这取决于您希望输出是什么。)

于 2012-06-23T19:19:47.373 回答
2

您需要遍历地图的值。通过这样做,您将获得Employee实例作为回报,并且可以简单地定义您的print()方法,如下所示,

public void print(){
    for(Employee e : map.values()){
        System.out.println(e);
    }
}

请注意,您不需要显式调用toString(),因为println会自动为您执行此操作。

于 2012-06-23T19:20:44.463 回答