您好,登錄后才能下訂單哦!
這篇文章主要介紹了java迭代器iterator怎么定義的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇java迭代器iterator怎么定義文章都會有所收獲,下面我們一起來看看吧。
1.interator的接口定義
Iterator是Java迭代器最簡單的實現。
public interface Iterator { boolean hasNext(); Object next(); void remove(); }
2.Iterator中的常用方法
(1)E next():返回迭代中的下一個元素
(2)boolean hasNext():如果迭代具有更多元素,則返回true
3.Iterator迭代實例
public class IteratorDemo { public static void main(String[] args) { Collection<String> coll = new ArrayList<String>(); //多態 coll.add("abc1"); coll.add("abc2"); coll.add("abc3"); coll.add("abc4"); // 迭代器,對集合ArrayList中的元素進行取出 // 調用集合的方法iterator()獲取Iterator接口的實現類的對象 Iterator<String> it = coll.iterator(); // 接口實現類對象,調用方法hasNext()判斷集合中是否有元素 // boolean b = it.hasNext(); // System.out.println(b); // 接口的實現類對象,調用方法next()取出集合中的元素 // String s = it.next(); // System.out.println(s); // 迭代是反復內容,使用循環實現,循環的終止條件:集合中沒元素, hasNext()返回了false while (it.hasNext()) { String s = it.next(); System.out.println(s); } } }
關于“java迭代器iterator怎么定義”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“java迭代器iterator怎么定義”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。