-2

我有 2 个对象列表,一个是 UI 对象,另一个是数据库对象,我想比较对象列表(UI 和数据库对象)并获取 UI 对象列表的索引。

List<ObjectVO> listOfVOObj = new ArrayList<ObjectVO>();
List<ObjectDB> listOfDBObj = new ArrayList<ObjectDB>();


ObjectVO{
private String regNo;
private String userId;
private String name;
...
}

ObjectDB{
private String regNo;
private String userId;
..
}

listOfVOObj:
index regNo userId name
1     123   456    name1
2     2233  567    name2 
3     2234  568    name3
4     2235  569    name4
5     2236  570    name5


listOfDBObj:
index regNo userId
1     2233  567    
2     2234  568    

我必须比较两个列表并希望获取 listOfVOObj 中与 listOfDBObj 中的记录匹配的记录的索引。

4

1 回答 1

1

从您的描述来看,这应该足够了:(在代码中我正在比较regNo上的对象)

List<string> indexList = new List<string>();

for (int i = 0; i < listOfVOObj.length(); i++)
{
    for (int j = 0; j < listOfDBObj.length(); j++)
    {
        if (listOfVOObj[i].regNo == listOfDBObj[j].regNo && listOfVOObj[i].userId == listOfDBObj[j].userId)
        {
            int  index = i + 1;
            indexList.Add(index);
        }
    }
}

如果您想首先存储两个对象的索引,则必须像这样创建新类:

public class MyClass
{
        string indexVOObj;
        string indexDBObj;

        public MyClass(string index1, string index2)
        {
                indexVOObj = index1;
                indexDBObj = index2;
        }
}

然后你必须使用这个:

List<MyClass> indexList = new List<MyClass>();

for (int i = 0; i < listOfVOObj.length(); i++)
{
   for (int j = 0; j < listOfDBObj.length(); j++)
   {
       if (listOfVOObj[i].regNo == listOfDBObj[j].regNo && listOfVOObj[i].userId == listOfDBObj[j].userId)
       {
           int  index1 = i + 1;
           int  index2 = j + 1;
           indexList.Add(new MyClass(index1, index2));
       }
   }
}
于 2013-10-25T12:14:00.600 回答