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

为什么会报错呢?

这是Student类

package com.imooc.collection;


import java.util.HashSet;

import java.util.Set;



public class Student {


public String id;

public String name;

public Set<Course> courses;

public Student(String id, String name) {

// TODO Auto-generated constructor stub

this.id =id;

this.name = name;

this.courses = new HashSet<Course>();

}


}

这是在main 中定义的student对象

Student student = new Student("1","小明");

 为什么会报错呢求大神解答


提问者:猫阿哥 2016-03-12 19:25

个回答

  • giegfried
    2016-03-12 22:06:15

    你定义过Course类么?

  • kkskylin
    2016-03-12 21:54:42

    你这问题描述得不够明确吧?报错那里有说明你发出来看一下啊.这样看不好给你下定义呢~!