有点新的Java ....需要项目信息....我有一个对象Student(类Student)初始化一个对象float数组,一个setMedia和getMedia设置并返回媒体/数组的笔记。是否有可能将属于一个对象Student的float类型(每个学生将有多个注释数组)添加到ArrayList中,并且还为每个数组添加媒体并以某种方式链接它们(数组1与浮动媒体1 )为了进一步参考,例如计算总票据和媒体,检索这些值以用于计算教师的等级(来自所有学生的总媒体)。或许我的方法不是朝着正确的方向发展...... 我有以下设置和获取笔记数组的方法:
float[] noteStudent;
private ArrayList<float[]> notesParr = new ArrayList<float[]>();
public void setNoteStudent() {
this.noteStudent = new float[notes.length];//notes used to get notes from input
}
public float[] getNoteStudent() {
return noteStudent;
}
public void addNoteToList() {
notesParr.add(getNoteStudent());
}