小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

Collection遍歷之iterator迭代器遍歷

 櫻花夢(mèng)_張藝馨 2016-11-23
=========練習(xí):用集合存儲(chǔ)5個(gè)學(xué)生對(duì)象,并吧學(xué)生對(duì)象進(jìn)行遍歷=====
========Student類:======
package com.gc.action;
public class Student {
 private String name;
 private int age;
 
 public Student() {
  super();
 }
 public Student(String name, int age) {
  super();
  this.name = name;
  this.age = age;
 }
 // getXxx/setXxx
 public int getAge() {
  return age;
 }
 public void setAge(int age) {
  this.age = age;
 }
 public String getName() {
  return name;
 }
 public void setName(String name) {
  this.name = name;
 }
}
==========StudentTest類========
package com.gc.test;
import java.util.ArrayList;
import java.util.Collection;
import com.gc.action.Student;
public class StudentTest {
 public static void main(String[] args) {
  Collection c =new ArrayList();
  Student s1 =new Student("zyx1",21);
  Student s2 =new Student("zyx2",22);
  Student s3 =new Student("zyx3",23);
  Student s4 =new Student("zyx4",24);
  Student s5 =new Student("zyx5",25);
  c.add(s1);
  c.add(s2);
  c.add(s3);
  c.add(s4);
  c.add(s5);
  Object[] obj = c.toArray();
  for (int i = 0; i < obj.length; i++) {
   Student s = (Student) obj[i];
   System.out.println(s.getName()+"---"+s.getAge());
  }
 }
}
結(jié)果:
zyx1---21
zyx2---22
zyx3---23
zyx4---24
zyx5---25
===============iterator方法============
package com.gc.test;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Iterator;
public class StudentTest {
 public static void main(String[] args) {
  Collection c =new ArrayList();
  c.add("zyx1");
  c.add("zyx2");
  c.add("zyx3");
  c.add("zyx4");
  c.add("zyx5");
  Iterator it = c.iterator();
  while (it.hasNext()) { //判斷是否存在下一個(gè),存在就遍歷
   System.out.println(it.next());
  }
 }
}
結(jié)果:
zyx1
zyx2
zyx3
zyx4
zyx5


    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多