gpt4 book ai didi

java - 选择正确的类(从名词)来构建我的项目

转载 作者:行者123 更新时间:2023-12-02 07:43:59 25 4
gpt4 key购买 nike

问题是我一直在编写以下练习,我想问你一些关于它的问题:

<小时/>

开发一个满足以下要求的系统:

创建一个测试生成器,提醒以下功能需求:

  • 有两种类型的问题:开放式和多项选择。第一个是学生必须回答的文本问题。后者是文本问题,有可供学生选择的选项 1。每个问题属于一个主题,每个主题由代码和描述标识。

  • 考试有 N 个问题,每个问题都有一个答案(由学生输入)。确定参加考试的学生和考官(组织考试的人)非常重要。

  • 为了生成测试,考官必须指出每个主题所需的问题数量。这些问题是从问题数据库中随机选择的。批改分两部分:选择题自动批改和开放题手动批改。

  • 生成的测试应该持续存在,并且必须能够为每个学生创建每个考试的副本。学生完成测试,然后自动批改,等待考官手动批改。最后,考官对开放性问题进行批改,完成批改。

  • 报告:考试和决议列表,显示每个学生每次考试的问题和答案及其注释。

<小时/>

我已经编写了我的程序,但问题是我对选择正确的类来构建我的项目有一些疑问,因为有时我无法判断需求中的所有名词是否应该是类,或者如果它仅仅取决于系统的范围...读了几本书,我发现我们必须只选择有意义的名词,因此我们通常会省略其中一些。

我的类(class)如下:

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

}

一位帮助我完成此任务的人决定取消最后几门类(class):Option、Answer、OpenAnswer 和 MultipleChoiceAnswer。他给我的原因是,将它们放在程序中没有多大意义,因为它们只处理一个变量,他建议我这样使用它们。其他人告诉我,代码的工作很重要,并且应该可以被其他人理解,而且不建议拥有许多几乎没有任何内容的小类或包含大量代码的非常大的类。这就是为什么我想问你这个问题。谢谢。

最佳答案

我会对它进行编码,以便生成的类具有某些行为,如果一个类仅包含信息,那么最好将其视为数据结构。

因此,在我看来,我不会首先创建添加属性的类,而是创建它们的方法,通过这样做,您会自动从类中排除数据结构。

你说

Reading a couple of books, I've found that we have to select only nouns that have a meaning, and for that reason we usually omit some of them

...在我看来,含义反射(reflect)了可以由类、方法执行的操作。

关于java - 选择正确的类(从名词)来构建我的项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16574498/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com