A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

© kegao 中级黑马   /  2016-1-1 11:53  /  1827 人查看  /  2 人回复  /   0 人收藏 转载请遵从CC协议 禁止商业使用本文

    • 需求:我有5个学生,请把这个5个学生的信息存储到数组中,并遍历数组,获取得到每一个学生信息。
    • Student[] arr = new Student[5];
    • arr[0] = new Student("张三", 23);
    • arr[1] = new Student("李四", 24);
    • arr[2] = new Student("王五", 25);
    • arr[3] = new Student("赵六", 26);
    • arr[4] = new Student("马哥", 20);
    • for (int i = 0; i < arr.length; i++) {
    •     System.out.println(arr);
    • }




2 个回复

倒序浏览
  1. /*
  2. * 问题:我有5个学生,请把这个5个学生的信息存储到数组中,并遍历数组,获取得到每一个学生信息
  3. * */
  4. public class Demo2 {
  5.         public static void main(String[] args) {
  6.                 Student[] students = new Student[5];
  7.                 students[0] = new Student("张三", 22);
  8.                 students[1] = new Student("李四", 23);
  9.                 students[2] = new Student("王五", 24);
  10.                 students[3] = new Student("赵六", 25);
  11.                 students[4] = new Student("周八", 26);
  12.                 for (int i = 0; i < students.length; i++) {
  13.                         System.out.println(students[i].toString());
  14.                 }
  15.         }
  16. }

  17. class Student {
  18.         private String name;
  19.         private int age;

  20.         public String getName() {
  21.                 return name;
  22.         }

  23.         public void setName(String name) {
  24.                 this.name = name;
  25.         }

  26.         public int getAge() {
  27.                 return age;
  28.         }

  29.         public void setAge(int age) {
  30.                 this.age = age;
  31.         }

  32.         public String toString() {
  33.                 return "Student [name=" + name + ", age=" + age + "]";
  34.         }

  35.         public Student(String name, int age) {
  36.                 super();
  37.                 this.name = name;
  38.                 this.age = age;
  39.         }
  40. }
复制代码
主要思路是创建好学生类,并定义好相关的方法。然后再添加到数组里面就好了。
回复 使用道具 举报
兄弟,你最后只是打印arr,那你的循环里的i还有什么作用啊
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马