问题是我一直在编写以下练习,我想问你一些关于它的问题:
开发满足以下要求的系统:
创建一个测试生成器,提醒以下功能需求:
有两种类型的问题:开放式和多项选择。第一个是学生必须开发以回答的文本问题。后者是文本问题,可供学生选择 1. 每个问题属于一个主题,每个主题由代码和描述标识。
考试有 N 个问题,每个问题都有一个答案(由学生输入)。确定参加考试的学生和考官(组织考试的人)很重要。
为了生成测试,考官必须为每个主题指明您想要的问题数量。这些问题是从问题数据库中随机选择的。更正分两部分进行:选择题自动更正和开放式问题手动更正。
生成的测试应该持续存在,并且它必须能够为每个学生创建每个考试的副本。学生完成测试,然后自动得到更正,等待考官手动更正。最后,为了完成更正,考官对开放式问题进行更正。
报告:考试和解决方案列表,显示每个学生的每个考试的问题和答案以及它的注释。
我已经编写了我的程序,但问题是我对选择正确的类来构建我的项目有些怀疑,因为有时我无法判断需求中的所有名词是否都应该是类,或者只是取决于系统的范围...阅读了几本书,我发现我们必须只选择有意义的名词,因此我们通常会省略其中的一些。
我的课程如下:
public class Student {
private String name;
// methods
}
public class Exam { // the examiners create the exams
private int id;
private Examiner examiner;
private List<Question> questions = new ArrayList<Question>();
private List<Test> tests = new ArrayList<Test>();
private Map<Topic, Integer> quantityChosenPerTopic = new HashMap<Topic, Integer>();
private Map<Topic, List<Question>> questionsByTopicDisordered;
// methods
}
public class Examiner {
private String name;
// methods
}
public abstract class Question {
private Topic topic;
private String text;
// methods
}
public class OpenQuestion extends Question {
// methods
}
public class MultipleChoiceQuestion extends Question {
private List<String> options = new ArrayList<String>();
private String correct;
// methods
}
public class Test { // the students take the tests
private int number;
private Student student;
private float mark = -1;
private Map<Question, String> answers = new HashMap<Question, String>();
private Map<Question, Boolean> correction = new HashMap<Question, Boolean>();
// methods
}
public class Topic {
private int code;
private String description;
// methods
}
在以前的系统版本中,我也有这些类:
public class Option {
private String option;
// methods
}
public abstract class Answer {
// methods
}
public class OpenAnswer extends Answer {
private String text;
// methods
}
public class MultipleChoiceAnswer extends Answer {
private Option option;
// methods
}
一个帮助我的人决定退出最后的课程:Option、Answer、OpenAnswer 和 MultipleChoiceAnswer。他给我的原因是让它们在程序中没有多大意义,因为它们只处理一个变量,他建议我就那样使用它们。其他人告诉我,代码有效并且其他人应该可以理解这一点很重要,而且不建议使用很多几乎没有任何内容的小类或包含大量代码的非常大的类。这就是我想问你这个的原因。谢谢。