我从事 Java 应用程序的工作。
有一个Getter对应一个整型字段(分数)。
我的目标是计算该字段的平均值。我决定创建一个数组,然后计算该数组的计数和总和。
但我真的陷入了 Java 语法和“心态”之中。
这是我的片段:
public void setPersonData2(List<Person> persons2) {
// Try to make a count of the array
int[] scoreCounter = new int[100]; // 100 is by default since we don't know the number of values
for (Person p : persons2) {
int score = p.getScoreTheo(); // Getter
Arrays.fill(scoreCounter, score);
// Try to delete all values equal to zero
int[] scoreCounter2 = IntStream.of(scoreCounter).filter(i -> i != 0).toArray();
// Calculate count
int test = scoreCounter2.length;
System.out.println(test);
}
}
你可以帮帮我吗 ?
慕虎7371278
慕雪6442864
慕标琳琳
相关分类