如果是要把List中的重复元素删除的话可以先吧List转成Set去除重复元素
比如现在有个数组为 myArray ,里面有部分的重复元素
Set mySet = new HashSet();
for(Object obj : Array){
mySet.add(obj);
}
mySet中所保存的元素就是唯一的了.
再吧mySet保存到数组中
完整例子:
// 创建一个数组,里面存在重复的元素
String[] myArray = {"s","s","f","d"};
Set
// 去除重复元素
for(String s : myArray){
mySet.add(s);
}
myArray = new String[mySet.size()];
int index = 0;
// 将去重后的结果存入数组
for(String s : mySet){
myArray[index] = s;
index++;
}
// 打印出来结果
System.out.println(Arrays.toString(myArray));
ArrayList a = new ArrayList(数组);
for(int i = 0 ;i Object obj = 数组[i]; if(a.contains(obj)){ a.remove(i); } } 我答案错了,不好意思,当初咋想的忘记了,抱歉。下面的其他匿名网友回答是正确的。另外附上我的修改。 一:利用set的唯一性解决 二:创建新的存储单位,判断是否重复后逐个增加 三:利用steam的distinct方法去重(jdk1.8的新特性)String[] strArr = {"B","A","C","D","C","A"};
Set
System.out.println(strList.toString());public static void main(String[] args){
String[] strArr = {"B","A","C","D","C","A"};
List
for (String str : strArr){
if(strList.contains(str)){
continue;
}
strList.add(str);
}
System.out.println(strList.toString());
}String[] strArr = {"B","A","C","D","C","A"};
List
strList = strList.stream().distinct().collect(Collectors.toList());
System.out.println(strList.toString());
用HashSet,将所有的元素放入到hashset里面,再读出来相同的元素就都删除只剩下一个了。
将数组放入set中后在转化到数组就行啦。
想知道,你最后是如何解决的