我有一堂课如下:
public class Level{
public int level;
public int score;
}
基本上,对于特定的级别值,我希望将分数表现为静态的。例如,在一场比赛中,一个团队有多个参赛者,每个参赛者都会为特定级别的分数做出贡献。只要级别相等,我希望将他们的每个贡献都添加到分数中。我想知道是否可以这样做。
编辑
如果我像这样更改我的类,我觉得问题会更容易可视化:
public class Participants{
public String name;
public String teamID;
public int[] levelScores; //where the level is denoted
//by the index of this array
}
现在,对于所有具有相同 teamID 的参与者,必须共享 levelScores,并且必须将具有相同 teamID 的任何参与者对象的贡献添加到相应的 levelScore。