JDK1.8ArrayList源碼分析2

E get(int index) 因爲ArrayList是採用數組結構來存儲的,所以它的get方法非常簡單,先是判斷一下有沒有越界,之後就可以直接通過數組下標來獲取元素了,所以get的時間複雜度是O(1)。 /** * Returns the element at the specified position in this list. * 返回列表中指定位置的元素。
相關文章
相關標籤/搜索