问答详情
源自:6-2 学生选课---判断 Set 中课程是否存在

为什么这里会报错,明明按照教程步骤写的

https://img.mukewang.com/5d28fb760001673609610515.jpg请大神们找出原因

提问者:fsnh 2019-07-13 05:29

个回答

  • fsnh
    2019-07-26 08:30:03

    谢谢解答,本人太粗心了

  • 叽噜叽噜
    2019-07-13 22:01:11

    package com.imooc.collection;
    import java.util.HashSet;
    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>();
        }

    Student类写对了吗?是不是写成下面这样了

    public Set<Course> Courses;