区别点 | ArrayList | Vector |
---|
时间 | 是新的类,是在 JDK 1.2 之后推出的 | 是旧的类,是在 JDK 1.0 的时候就定义的 |
性能 | 性能较高,是采用了异步处理 | 性能较低,是采用了同步处理 |
输出 | 支持 Iterator、ListIterator 输出 | 除了支持 Iterator、ListIterator 输出,还支持Enumeration 输出 |
标签:输出,Iterator,JDK,ArrayList,支持,面试,Vector,ListIterator,性能
来源: https://blog.csdn.net/weixin_46457853/article/details/113785087