您好,登錄后才能下訂單哦!
java中迭代器與for循環的優劣勢有哪些?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學習下,希望你能有所收獲。
1.概念理解
for循環:是支持迭代的一種通用結構,是最有效,最靈活的循環結構
迭代器:是通過集合的iterator()方法得到的,所以我們說它是依賴于集合而存在的
Foreach:通過閱讀源碼我們還發現一個Iterable接口。它包含了一個產生Iterator對象的iterator()方法,而且將Iterator對象被foreach用來在序列中移動。對于任何實現Iterable接口的對象都可以使用。
ArrayList中的效率對比:
List<Integer> integers = Lists.newArrayList(); for(int i=0;i<100000;i++){ integers.add(i); } long start1 = System.currentTimeMillis(); for(int count =0 ;count<10;count++){ for(int i=0;i<integers.size();i++){ int j=integers.get(i); } } System.out.println(String.format("for循環100次時間:%s ms",System.currentTimeMillis()-start1)); long start2 = System.currentTimeMillis(); for(int count =0 ;count<10;count++) { for (Integer i : integers) { int j = i; } } System.out.println(String.format("foreach循環100次時間:%s ms",System.currentTimeMillis()-start2)); long start3 = System.currentTimeMillis(); for(int count =0 ;count<10;count++) { Iterator<Integer> iterator = integers.iterator(); while(iterator.hasNext()){ int j=iterator.next(); } } System.out.println(String.format("迭代器循環100次時間:%s ms",System.currentTimeMillis()-start3));
結果:
for循環100次時間:15 ms
foreach循環100次時間:25 ms
迭代器循環100次時間:20 ms
知識點擴展:
增強for循環:foreach
在Java 5.0提供了一種新的迭代訪問 Collection和數組的方法,就是foreach循環。使用foreach循環執行遍歷操作不需獲取Collection或數組的長度,也不需要使用索引訪問元素。
看完上述內容是否對您有幫助呢?如果還想對相關知識有進一步的了解或閱讀更多相關文章,請關注億速云行業資訊頻道,感謝您對億速云的支持。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。