List<实体> list = new List<实体>(); 如何去掉里面重复的数据
3个回答
展开全部
public static ArrayList<String> getSame(String[] str){
ArrayList<String> list=new ArrayList<String>();
String[] newStr=new String[str.length];
int index=0;
for (int i = 0; i < str.length; i++) {
boolean contained =false;
for (int j = 0; j < index; j++){
if (str[i].equals(newStr[j])) {
contained = true;
break;
}
}
if(!contained) newStr[index++]=str[i];
}
String[] resultStr=new String[index];
System.arraycopy(newStr, 0, resultStr, 0, index);
for (int i = 0; i < resultStr.length; i++) {
list.add(resultStr[i]);
}
return list;
}
ArrayList<String> list=new ArrayList<String>();
String[] newStr=new String[str.length];
int index=0;
for (int i = 0; i < str.length; i++) {
boolean contained =false;
for (int j = 0; j < index; j++){
if (str[i].equals(newStr[j])) {
contained = true;
break;
}
}
if(!contained) newStr[index++]=str[i];
}
String[] resultStr=new String[index];
System.arraycopy(newStr, 0, resultStr, 0, index);
for (int i = 0; i < resultStr.length; i++) {
list.add(resultStr[i]);
}
return list;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
去重复的话别用list,用hashset
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询