多选题
在课程类Course中增加与学生类Student之间的一个学生选课的联系,一门课程可以被多个学生选修,一个学生可以选修多门课程。下述语句中关于联系的描述正确的是( )
A、可以在Course的类说明中加入:relationshipStudentstudents;
B、可以在Student的类说明中加入:relationshipSet<Course>courses;
C、可以在Student的类说明中加入:relationshipSetstudents;
D、可以在Course的类说明中加入:relationshipSet<Student>students;