问答详情
源自:4-11 学生选课---通过 Set 集合管理课程

97行出现错误

for(Course cr:student.course)为什么student出错了怎么回事?

提问者:灰姑娘的梦 2015-07-11 12:11

个回答

  • lany44
    2015-07-16 09:45:29

    你返回去看一下你的Student类,   Set类的courses  要加上泛型<Course>   构造函数中也要加上


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

    }

  • _潇潇暮雨
    2015-07-11 17:56:37

    有完整代码大家才能帮助找出错误啊。