乡下人产国偷v产偷v自拍,国产午夜片在线观看,婷婷成人亚洲综合国产麻豆,久久综合给合久久狠狠狠9

  • <output id="e9wm2"></output>
    <s id="e9wm2"><nobr id="e9wm2"><ins id="e9wm2"></ins></nobr></s>

    • 分享

      Collection遍歷之iterator迭代器遍歷

       櫻花夢_張藝馨 2016-11-23
      =========練習(xí):用集合存儲5個學(xué)生對象,并吧學(xué)生對象進(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()) { //判斷是否存在下一個,存在就遍歷
         System.out.println(it.next());
        }
       }
      }
      結(jié)果:
      zyx1
      zyx2
      zyx3
      zyx4
      zyx5


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

        0條評論

        發(fā)表

        請遵守用戶 評論公約

        類似文章 更多