标致眼睛

文章
8
资源
0
加入时间
2年10月21天

[Java] 数据结构与算法分析 |Collection接口与iterator接口|Collection中的remove()与iterator中remove()的区别

目录1.Collection的接口结构2.Collection接口中常用的方法1.Collection的接口结构collection的图如下所示:collection接口从其源码中可以得知:collection继承了Iterable接口public interface Collection<E> extends Iterable<E>iterable接口中的方法有Iterator<T> iterator();de