带All的功能演示
boolean addAll(Collection c)
boolean removeAll(Collection c)
boolean containsAll(Collection c)
boolean retainAll(Collection c)
4.集合的遍历之迭代器遍历
-
A:迭代器概述
-
集合是用来存储元素,存储的元素需要查看,那么就需要迭代(遍历)
for(Iterator it = c.iterator();it.hasNext()
2022-09-01 20:22:32
带All的功能演示
boolean addAll(Collection c)
boolean removeAll(Collection c)
boolean containsAll(Collection c)
boolean retainAll(Collection c)
A:迭代器概述
集合是用来存储元素,存储的元素需要查看,那么就需要迭代(遍历)
for(Iterator it = c.iterator();it.hasNext()
下一篇:重学java——增删改查基础