第四章 四種List實現類的對比總結 1、ArrayList 非線程安全 基於對象數組 get(int index)不需要遍歷數組,速度快; iterator()方法中調用了get(int index),所以速度也快 ...