Java提取2个集合中的相同和不同元素代码⽰例
本⽂分享的⽰例代码实现提取2个集合中相同和不同的元素
此处需要使⽤Collection集合所提供的⼀个⽅法:removeAll(Cellection list),removeAll⽅法⽤于从列表中移除指定collection 中包含的所有元素。
语法 removeAll(Collection<?> c)
c:包含从列表中移除元素的collection对象。
该⽅法返回值为boolean对象,如果List集合对象由于调⽤removeAll⽅法⽽发⽣更改,则返回true,否则返回false。实现代码如下:
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;
public class Test {
字段字符串去重复
public static void main(String args[]){
//集合⼀
List _first=new ArrayList();
_first.add("jim");
_first.add("tom");
_first.add("jack");
//集合⼆
List _second=new ArrayList();
_second.add("jack");
_second.add("happy");
_second.add("sun");
_second.add("good");
Collection exists=new ArrayList(_second);
Collection notexists=new ArrayList(_second);
System.out.println("_second中不存在于_set中的:"+exists);
System.out.println("_second中存在于_set中的:"+notexists);
}
}
运⾏结果:
_second中不存在于_set中的:[happy, sun, good]
_second中存在于_set中的:[jack]
总结
以上就是本⽂关于Java提取2个集合中的相同和不同元素代码⽰例的全部内容,希望对⼤家有所帮助。如有不⾜之处,欢迎留⾔指出。感谢朋友们对本站的⽀持!
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论