97行出现错误

来源:4-11 学生选课---通过 Set 集合管理课程

灰姑娘的梦

2015-07-11 12:11

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

写回答 关注

2回答

  • 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

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

Java入门第三季

Java中你必须懂得常用技能,不容错过的精彩,快来加入吧

409792 学习 · 4340 问题

查看课程

相似问题