我有這個項目,我讓你導入你的生日,名字,birthyear和birthmonth。我試圖找到一個方法,找到最流行的生日,例如,「最流行的日期是空白生日的第16日。我知道我將不得不循環birthDaysStats,但我會怎麼寫? 這是我的代碼,而我遇到問題的方法是在底部。如何循環找到Arraylist的最大值
import java.util.ArrayList;
import java.util.Collections;
public class Analyzer {
// instance variables - replace the example below with your own
private final static int DAYS_PER_MONTH = 31;
private final static int MONTHS_PER_YEAR = 12;
private int[] birthDayStats;
private int[] birthMonthStats;
private ArrayList<Person> people;
/**
* Constructor for objects of class Analyzer
*/
public Analyzer() {
this.people = new ArrayList<Person>();
this.birthDayStats = new int[Analyzer.DAYS_PER_MONTH];
this.birthMonthStats = new int[Analyzer.MONTHS_PER_YEAR];
}
public void addPerson(String name, int birthDay, int birthMonth, int birthYear) {
Person person = new Person(name, birthDay, birthMonth, birthYear);
if (person.getBirthDay() != -1 || person.getBirthMonth() != -1) {
people.add(person);
birthMonthStats[birthMonth - 1]++;
birthDayStats[birthDay - 1]++;
} else {
System.out.println("Your current Birthday is " + birthDay + " or "
+ birthMonth + " which is not a correct number 1-31 or 1-12 please put in a correct number ");
}
}
public void printPeople() { //prints all people in form: 「 Name: Tom Month: 5 Day: 2 Year: 1965」
int index = 0;
while (index < people.size()) {
Person person = (Person) people.get(index);
System.out.println(person);
index++;
}
}
public void printMonthList() { //prints the number of people born in each month Sample output to the right with days being similar
int index = 0;
while (index < birthMonthStats.length) {
System.out.println("Month number " + (index + 1) + " has " + birthMonthStats[index] + " people");
index++;
}
}
public void mostPopularDay() { //finds the most popular Day of the year
Object obj = Collections.mostPopularDay(birthDayStats);
System.out.println(obj);
}
}
什麼是對象obj = Collections.mostPopularDay(birthDayStats);'應該這樣做?這看起來像各種無效。你已經嘗試過什麼來解決這個問題? – Carcigenicate
'Collections.mostPopularDay'不是一件事...你期望做什麼? –
[通過數組遍歷 - java](https://stackoverflow.com/questions/14489590/iterating-through-array-java) –