首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
retainall专题
List和set集合:交集、差集、合集的区别retainAll,removeAll、addAll
set 、list集合的交集(retainAll)、差集(removeAll)是没有区别的都是一样的. set 、list集合的合集addAll是有区别的:set可以去重复;list不去重复 public static void main(String[] args) { Set<Integer> result = new HashSet<Integer>();
阅读更多...