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 に答える