您好,登錄后才能下訂單哦!
java中迭代器與for循環(huán)的優(yōu)劣勢有哪些?很多新手對此不是很清楚,為了幫助大家解決這個難題,下面小編將為大家詳細講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
1.概念理解
for循環(huán):是支持迭代的一種通用結(jié)構(gòu),是最有效,最靈活的循環(huán)結(jié)構(gòu)
迭代器:是通過集合的iterator()方法得到的,所以我們說它是依賴于集合而存在的
Foreach:通過閱讀源碼我們還發(fā)現(xiàn)一個Iterable接口。它包含了一個產(chǎn)生Iterator對象的iterator()方法,而且將Iterator對象被foreach用來在序列中移動。對于任何實現(xiàn)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循環(huán)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循環(huán)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("迭代器循環(huán)100次時間:%s ms",System.currentTimeMillis()-start3));
結(jié)果:
for循環(huán)100次時間:15 ms
foreach循環(huán)100次時間:25 ms
迭代器循環(huán)100次時間:20 ms
知識點擴展:
增強for循環(huán):foreach
在Java 5.0提供了一種新的迭代訪問 Collection和數(shù)組的方法,就是foreach循環(huán)。使用foreach循環(huán)執(zhí)行遍歷操作不需獲取Collection或數(shù)組的長度,也不需要使用索引訪問元素。
看完上述內(nèi)容是否對您有幫助呢?如果還想對相關(guān)知識有進一步的了解或閱讀更多相關(guān)文章,請關(guān)注億速云行業(yè)資訊頻道,感謝您對億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。