问答详情
源自:6-3 学生选课---获取 List 中课程的位置

学生选课--判断Set中课程是否存在章节举例代码的Course类型不一致问题,应该用Set 类型并用HashSet初始化才准确吧?

public Set<Course> coursesToSelect;
public Student student;
/**
 * 学生类
 * @author Administrator
 *
 */
public class Student {

   public String id;
   
   public String name;
   
   public Set<Course> courses;

   public Student(String id, String name) {
      this.id = id;
      this.name = name;
      this.courses = new HashSet<>();
   }


}


提问者:影3316 2019-04-13 00:39

个回答

  • 慕斯卡4078343
    2019-06-27 23:41:04

    this.courses = new HashSet<Course>();


  • 慕九州5073361
    2019-04-14 22:36:58

    泛型里的Course类没加