Javaで講義情報や履修者を表示するプログラムを作りました。ソースコードは以下のようになりました。こちらは正しく動作しました。
Java
1class Lesson { 2 private String name; //講義名 3 private String teacher; //講義担当者 4 private int max; //最大履修者数 5 private int num; //登録履修者数 6 private Student[] st; //Studentの配列 7 8 public Lesson(String name, String teacher, int max) { 9 this.name = name; 10 this.teacher = teacher; 11 this.max = max; 12 this.num = 0; //numは0に初期化 13 st = new Student[max]; //配列の確保 14 } 15 16 public void add(Student s) { 17 st[this.num++] = s; 18 } 19 20 public void print() { 21 22 System.out.println("Lesson : " + name); 23 System.out.println("Teacher : " + teacher); 24 System.out.println("Number of Students: " + num); 25 26 for (int i = 0; i < num; i++) { 27 st[i].printShort(); 28 } 29 30 System.out.println("----------"); 31 } 32} 33 34class Student { 35 String id; 36 String name; 37 int grade; 38 39 public Student(String id, String name, int grade) { 40 41 this.id = id; 42 this.name = name; 43 this.grade = grade; 44 } 45 46 public void printShort() { 47 System.out.println(id + ", " + name + ", " + grade); 48 } 49} 50 51class Main2 { 52 public static void main(String[] args) { 53 54 Lesson ls = new Lesson("Program Enshu", "Satou", 10); 55 56 Student st1 = new Student("010110", "Hanako", 80); 57 Student st2 = new Student("010139", "Taro", 54); 58 Student st3 = new Student("010089", "Jiro", 70); 59 Student st4 = new Student("010210", "Akari", 60); 60 61 ls.add(st); 62 ls.add(st2); 63 ls.add(st3); 64 ls.add(st4); 65 66 ls.print(); 67 } 68}
これを可変長配列のArrayListクラスを用いて書き換えたいのですが実装方法がよく分かりません。
可変長配列のArrayListクラスを用いて途中まで書き換えたソースコードは以下のようになりました。
Java
1import java.util.*; 2 3class Lesson { 4 private String name; 5 private String teacher; 6 private int max; 7 private int num; 8 ArrayList<Student> st = new ArrayList<Student>(); 9 10 public Lesson(String name, String teacher, int max) { 11 this.name = name; 12 this.teacher = teacher; 13 this.max = max; 14 this.num = 0; 15 st = new Student[max];//書き換え (配列を確保) 16 } 17 public void add(Student s) { 18 String id0 = s.getId(); 19 num++; 20 for(int i = 0; i < st.size(); i++) { 21 Student s0 = st.get(i); 22 if (id0.compareTo(s0.getId()) < 0){ // id0より大きいIDを発見 23 //引数が2つのaddで,i番目にsを挿入 24 return; 25 } 26 } 27 //id0が一番大きい場合は,通常のaddを実行 28 } 29 public void print() { 30 31 System.out.println("Lesson : " + name); 32 System.out.println("Teacher : " + teacher); 33 System.out.println("Number of Students: " + num); 34 35 for (int i = 0; i < num; i++) { 36 st[i].printShort(); 37 } 38 System.out.println("----------"); 39 } 40 class Student { 41 String id; 42 String name; 43 int grade; 44 45 public String getId() { 46 return id; 47 } 48 49 public Student(String id, String name, int grade) { 50 51 this.id = id; 52 this.name = name; 53 this.grade = grade; 54 } 55 56 public void printShort() { 57 System.out.println(id + ", " + name + ", " + grade); 58 } 59 } 60 class Main { 61 public static void main(String[] args) { 62 63 Lesson ls = new Lesson("Program Enshu", "Satou", 10); 64 65 Student st1 = new Student("010110", "Hanako", 80); 66 Student st2 = new Student("010139", "Taro", 54); 67 Student st3 = new Student("010089", "Jiro", 70); 68 Student st4 = new Student("010210", "Akari", 60); 69 70 ls.add(st1); 71 ls.add(st2); 72 ls.add(st3); 73 ls.add(st4); 74 75 ls.print(); 76 } 77 } 78}
コメントアウトしている部分をどのように書き換えるか、またaddメソッドでどのようにコードを書けばよいかがいまいちわかりません。
回答よろしくお願いします。
あなたの回答
tips
プレビュー