猫阿哥
2016-03-12 19:25
这是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","小明");
为什么会报错呢求大神解答
你定义过Course类么?
你这问题描述得不够明确吧?报错那里有说明你发出来看一下啊.这样看不好给你下定义呢~!
Java入门第三季
409792 学习 · 4340 问题
相似问题