Java入门6.3---操作集合的工具类Collections 1.Collections 2.Enumeration(了解)

Java入门6.3---操作集合的工具类Collections
1.Collections
2.Enumeration(了解)

2.Enumeration(了解)

Enumeration接口是Iterator迭代器的“古老版本”。与Enumeration相比,Iterator更加安全,因为当一个集合正在被遍历的时候,它会阻止其他线程取修改集合。

区别:

  1. Iterator的⽅法名比Enumeration更科学
  2. Iterator有fail-fast机制,比Enumeration更安全
  3. Iterator能够删除元素,Enumeration并不能删除元素

Java入门6.3---操作集合的工具类Collections
1.Collections
2.Enumeration(了解)