我有2个列表,我需要使用相同的列表将项目从一个列表传递到另一个列表 模型,在这种情况下,我们将其称为“答复”。
每个回复中都有一个uid,如果我提供的uid等于回复的uid,则它应该将该条目取回并复制到currentReply
列表中
List<Replies> allReplies; //All replies are here
List<Replies> currentReply; //Replies that meet criteria should be added here
String prov_uid = 123456;
Replies replies = getValue(Replies.class);
if (allReplies.equals(prov_uid))
{
currentReply.add()
}
答案 0 :(得分:0)
这应该有效
for (Replies item : allReplies){
if (<your condition>){
currentReply.add(item);
}
}