1

たとえば、次を含むオブジェクトの配列リストがあります。

  • 名前
  • 住所
  • 電話
  • 他にも多数の物件...

一部のプロパティが配列リスト内の他のオブジェクトと同じ値を持つ場合、このリスト内のいくつかのオブジェクトを削除したいと考えています。リスト全体をループして、名前、住所、電話番号がこのリストに既に存在するかどうかを確認する必要があります。私は単純なことはできません:

for (...)
if (!newlist.contains(element)) { newlist.add(element); }

element新しいリストに追加する前に、特定のプロパティが同じであることを確認するだけでよいためです。

誰かが私を正しい方向に導くことができますか?

4

2 に答える 2

3

カスタム Comparator で Set を使用するのはどうですか? オブジェクト クラスに Comparable を実装させます。次に、compare メソッドで、必要に応じてオブジェクトを正確に照合するテストを記述できます。

于 2013-01-30T11:55:01.873 に答える
2

Key Class を作成し、以下のコードでEmployee.javaとしましょう。

package com.innovation;


public class Employee {
private String name;
private String address;
private String phone;

public Employee() {
    super();
}

public Employee(String name, String address, String phone) {
    super();
    this.name = name;
    this.address = address;
    this.phone = phone;
}

public String getName() {
    return name;
}

public void setName(String name) {
    this.name = name;
}

public String getAddress() {
    return address;
}

public void setAddress(String address) {
    this.address = address;
}

public String getPhone() {
    return phone;
}

public void setPhone(String phone) {
    this.phone = phone;
}

@Override
public int hashCode() {
    final int prime = 31;
    int result = 1;
    result = prime * result + ((address == null) ? 0 : address.hashCode());
    result = prime * result + ((name == null) ? 0 : name.hashCode());
    result = prime * result + ((phone == null) ? 0 : phone.hashCode());
    return result;
}

@Override
public boolean equals(Object obj) {
    if (this == obj)
        return true;
    if (obj == null)
        return false;
    if (getClass() != obj.getClass())
        return false;
    Employee other = (Employee) obj;
    if (address == null) {
        if (other.address != null)
            return false;
    } else if (!address.equals(other.address))
        return false;
    if (name == null) {
        if (other.name != null)
            return false;
    } else if (!name.equals(other.name))
        return false;
    if (phone == null) {
        if (other.phone != null)
            return false;
    } else if (!phone.equals(other.phone))
        return false;
    return true;
}

@Override
public String toString() {
    return "Employee [name=" + name + ", address=" + address + ", phone="
            + phone + "]";
}



}

次に、ロジックを適用する Client クラスを作成します。たとえば、Client.javaというメイン メソッドを含むクラスを想定します。

package com.innovation;

import java.util.ArrayList;
import java.util.HashSet;
import java.util.List;
import java.util.Set;

public class Client {

    public static void main(String[] args) {


        Set<Employee> empSet = new HashSet<Employee>(populateList());

        for (Employee employee : empSet)
        {
            System.out.println(employee);
        }

    }   

    public static List<Employee> populateList()
    {
        List<Employee> lsts = new ArrayList<Employee>();

        lsts.add(new Employee("rais","gurgaon","123456"));
        lsts.add(new Employee("alam","Delhi","123685"));
        lsts.add(new Employee("shyam","Mumbai","1257456"));
        lsts.add(new Employee("ramesh","Ahmadabad","196356"));
        lsts.add(new Employee("rais","gurgaon","123456"));
        lsts.add(new Employee("rais","gurgaon","123456"));
        lsts.add(new Employee("rais","gurgaon","123456"));


        return lsts;

    }

}

以下の出力が表示されます。リストに存在する重複エントリがセットで削除されていることがはっきりとわかります。equals と hashcode メソッドの優れた実装のすべての魔法です。

Employee [name=rais, address=gurgaon, phone=123456]
Employee [name=ramesh, address=Ahmadabad, phone=196356]
Employee [name=alam, address=Delhi, phone=123685]
Employee [name=shyam, address=Mumbai, phone=1257456]
于 2013-01-30T12:28:12.227 に答える