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

关于类型不匹配

http://img2.mukewang.com/5dce01ae0001672619201080.jpg第77行:类型不匹配:不能从元素类型 Object 转换为 Course。为什么


提问者:慕前端4104148 2019-11-15 09:40

个回答

  • 魔法少男小锅锅
    2019-11-15 19:55:28

    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>();

    }


  • 魔法少男小锅锅
    2019-11-15 19:54:58

    打印输出,应该是打印存放在Set即合理的元素,在定义Student类里,你看你定义的Set类型的标识符是什么,我们要取的是Set集合里的元素,那肯定不是用getScourses啊