Java基础 - 单列集合,ArrayList,Vector,Java面试你必须要知道的那些知识

带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()

上一篇:扑克进阶


下一篇:重学java——增删改查基础