(JAVA)集合Collection3
生活随笔
收集整理的這篇文章主要介紹了
(JAVA)集合Collection3
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
package cn.cast.collection;/*** @author zhangyu* @date 2021年08月28日 4:12 下午* 使用集合存儲自定義對象,并迭代* 在迭代器中,next()在運行中,不能添加對象,且不能多次使用*/
import cn.book.objectarr.Student;import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;public class CollectionDemo3 {public static void main(String[] args) {Collection col = new ArrayList();col.add(new Student("a",19));col.add(new Student("b",12));col.add(new Student("c",20));col.add(new Student("d",25));col.add(new Student("e",90));Iterator it = col.iterator();while (it.hasNext()){System.out.println(((Student)it.next()).getName()+((Student)it.next()).getName());}}
}
指針異常
?
總結
以上是生活随笔為你收集整理的(JAVA)集合Collection3的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C语言基础之数据结构
- 下一篇: java后端使用freemarker生成