看的时候照着老师的写的,哪里出错了呢?
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<Course>();
}
}
同求答案
据我估计 是你set 的泛型写错了 你再 好好看看 过着把 你student的代码贴出来
这种错误 只会出现在 类型不匹配上
同求答案
61行的那个错误可能是你的Student类中的course修改了之后没保存,或者还没有修改。
Student类中的course修改为:public Set<Course> course;
贴代码不是更好
什么错误,,贴出来看一下
什么错误,,贴出来看一下