0
我試圖將參數中具有相同值的對象放到數組中。例如,將參數中具有相同值的對象放到數組中
Student a = new Student("Abigail", 1, 5);
Student b = new Student("Benny", 1, 6);
Student c = new Student("Charles", 1, 10);
Student d = new Student("Denise", 2, 12);
Student e = new Student("Eleanor", 2, 9);
Student f = new Student("Fred", 2, 5);
對於該代碼中,1表示公共汽車路線之一,和2表示公共汽車路線2.我想用相同的路線的人使用的方法是在陣列中,而不是手動插入的對象內部陣列。有沒有辦法做到這一點?
你知道你到底有多少路線和學生? – ChiefTwoPencils
只有兩條路線,上面提到了所有的學生 –