我跟老师写的一样,为什么这个地方一直有错?

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

qq_慕容3376521

2019-07-12 13:45

https://img4.mukewang.com/5d281e2c0001517c06840432.jpghttps://img3.mukewang.com/5d281e3f000133d306780429.jpghttps://img.mukewang.com/5d281e4d0001eeee05680433.jpg 

看的时候照着老师的写的,哪里出错了呢?

写回答 关注

8回答

  • qq_慕工程040105
    2019-09-11 14:09:08

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

    }

    }


    qq_慕工程...

    改成这样就对了

    2019-09-11 14:09:26

    共 1 条回复 >

  • qq_慕工程040105
    2019-09-11 14:01:36

    同求答案

  • 慕粉7367658
    2019-08-22 21:25:39

    据我估计  是你set 的泛型写错了  你再 好好看看  过着把 你student的代码贴出来 

    这种错误 只会出现在 类型不匹配上

  • 热心市民黄先生
    2019-07-26 17:20:48

    同求答案

  • 慕雪归1495467
    2019-07-16 22:37:42

    61行的那个错误可能是你的Student类中的course修改了之后没保存,或者还没有修改。

    Student类中的course修改为:public Set<Course> course;

    qq_慕沐4...

    改了也是错的 为什么?

    2019-08-09 10:44:39

    共 1 条回复 >

  • 一只大喵
    2019-07-12 16:45:24

    贴代码不是更好


  • 慕的地0084538
    2019-07-12 15:43:32

    什么错误,,贴出来看一下

  • 慕的地0084538
    2019-07-12 15:43:21

    什么错误,,贴出来看一下

Java入门第三季

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

409792 学习 · 4340 问题

查看课程

相似问题