验证List中是否存在对象

时间:2014-12-15 18:01:52

标签: java collections comparator

我需要的是:验证列表中是否存在比较某些属性的对象。

我遇到了Collections and Comparator的麻烦。我尝试使用此二进制搜索进行验证:

Collections.binarySearch(listFuncionarioObs2, formFuncionarioObsIns, formFuncionarioObsIns.objectComparator);//Binary search of an object in a List of this Object.

使用这个比较器:

public int compare(FuncionarioObs func, FuncionarioObs funcToCompare) {

    int testCodigo = -1;

    if(null != func2.getCodigo()){
        testCodigo = func.getCodigo().compareTo(funcToCompare.getCodigo());
    }

    int testData = func.getData().compareTo(funcToCompare.getData());
    int testEvento = func.getEvento().compareTo(funcToCompare.getEvento());
    int testAndamento = func.getAndamento().compareTo(funcToCompare.getAndamento());

    if(testCodigo == 0 && testData == 0 && testEvento == 0 && testAndamento == 0){
        return 0;
    }else if(testData == 0 && testEvento == 0 && testAndamento == 0) {
        return 0;
    }

    return -1;

}

但是我有点失落,这不起作用,我不知道最好的方法。有人可以为我打开灯吗?

致以最诚挚的问候,

编辑。

我在二进制搜索之前使用以下代码对列表进行排序:

List<FuncionarioObs> listFuncionarioObsBD = funcionarioObsDAO.getFuncionarioObsById(sigla);
Collections.sort(listFuncionarioObsBD);

排序的比较器是:

@Override
public int compareTo(FuncionarioObs func) {

        if(this.getCodigo() > func.getCodigo()){
            return 1;
        }else if(this.getCodigo() == func.getCodigo() ) {
            return 0;
        }else{
            return -1;
        }

}

1 个答案:

答案 0 :(得分:0)

的CompareTo

您的比较无法正常工作。现在它只是比较对象的引用。您必须更改此值以比较对象值:

@Override public int compareTo(Account aThat) {
final int BEFORE = -1;
final int EQUAL = 0;
final int AFTER = 1;

//this optimization is usually worthwhile, and can
//always be added
if (this == aThat) return EQUAL;

//primitive numbers follow this form
if (this.fAccountNumber < aThat.fAccountNumber) return BEFORE;
if (this.fAccountNumber > aThat.fAccountNumber) return AFTER;

//booleans follow this form
if (!this.fIsNewAccount && aThat.fIsNewAccount) return BEFORE;
if (this.fIsNewAccount && !aThat.fIsNewAccount) return AFTER;

.
.
.
//all comparisons have yielded equality
//verify that compareTo is consistent with equals (optional)
assert this.equals(aThat) : "compareTo inconsistent with equals.";

return EQUAL;
}
来自here

查找对象

现在是下一部分。
正如 CrtlAltDelete 暗示它依赖于您的列表是否已排序。
如果它按升序排序:遍历对象,直到找到 compareTo 返回零(==成功)或一个(==失败)的那个。

对于未排序的列表,您必须遍历所有对象以搜索返回零的对象。