gpt4 book ai didi

java - 向用户显示随机对象时使用访问器方法?

转载 作者:行者123 更新时间:2023-12-02 10:01:23 25 4
gpt4 key购买 nike

对于我的类(class),我必须制作一个程序来测试用户 3 个与 Java 相关的多项选择问题。每次程序执行时,问题都应以随机顺序显示给用户。

问题的基础是由 Question 类构成的,我基本上已经“完成”了该类并且文件已编译。然而,我的老师建议我们使用访问器方法,它将不同的字段返回到主函数。通常情况下,这不会有问题,因为只有一个确定的对象要返回到 main 。但是,如果您不确定程序将显示什么对象,您应该如何返回变量呢?

我尝试使用这样的代码将实际问题放入 Question 类而不是我的主类中,这将使访问器的需求变得过时,因为所有内容都在同一个类中。

question = this.question;
this.question = ("Which of these is not a primitive data type?");

choiceA = this.choiceA;
this.choiceA = ("string");

但是,为了使 Question 类中的代码减少重复,我将实际问题移至我的主类中,因此访问器仍然是必要的。我在主类中使用 arrayList,然后使用 Collections.Shuffle,其中输入了问题,然后进行随机化。我想向用户打印随机问题,但为此我仍然需要访问器。但此时,代码已经是随机的。我不确定如何从 Question 类中获取与正确的随机问题相对应的数据,然后将其显示给用户(希望这是有意义的)。这是到目前为止的 Question 类:

// declare fields for the class
private String question; // ex: "Which is not a primitive data type?"
private String choiceA; // ex: "string"
private String choiceB; // ex: "boolean"
private String choiceC; // ex: "long"
private String choiceD; // ex: "char"
private String correctAns; // ex: "string"

// constructor for the question
public Question(String question, String choiceA, String choiceB, String choiceC, String choiceD, String correctAns)
{
question = this.question;

choiceA = this.choiceA;

choiceB = this.choiceB;

choiceC = this.choiceC;

choiceD = this.choiceD;

correctAns = this.correctAns;
}

// accessor method for retrieving the question
public String getQuestion()
{
return question;
}

// accessor method for retrieving the first choice of the question
public String getChoiceA()
{
return choiceA;
}

// accessor method for retrieving the second choice of the question
public String getChoiceB()
{
return choiceB;
}

// accessor method for retrieving the third choice of the question
public String getChoiceC()
{
return choiceC;
}

// accessor method for retrieving the fourth choice of the question
public String getChoiceD()
{
return choiceD;
}

// accessor method for retrieving the correct answer to the question
public String getCorrectAns()
{
return correctAns;
}

如果这有帮助,这里是该项目的指南:“创建一个 Question 类,您可以在 main 方法中将其实例化为三个 Question 对象。将 Question 对象存储在数组或数组列表中。然后随机播放 Questions每次播放该节目时都会订购。”没有明确的指示让我们在主类或问题类中编写实际问题(例如:“什么不是原始数据类型?”),但我仍然不确定哪一个最有效。

编辑以澄清:

我想要的输出将是三个随机顺序的问题,如下所示:

以下哪一个不是 Java 关键字?

  • A)开关
  • B) 键盘
  • C) float
  • D)正确

switch-case 语句必须以什么结尾?

  • A)开关
  • B)中断
  • C) 继续
  • D)其他

以下哪一个不是原始数据类型?

  • A) 字符串
  • B) boolean 值
  • C) 长
  • D) 字符

每次程序运行时,用户都会以不同的顺序回答这些问题。使用访问器,这些随机字段(“其中哪个不是原始数据类型”,以及所有后续答案)必须以不同的顺序返回到主类。这就是我不确定该怎么做,因为访问器通常访问确定的值。

另外,这是我创建问题对象并将它们放入 arrayList 的代码。我实际上还没有输入实际数据,但这本质上就是它应该的样子。

// Create an ArrayList which will store the Question objects    
ArrayList<Question> questionList = new ArrayList<Question>();

// Add 3 questions to the ArrayList using a for-loop
for (int counter = 0; i < 3; counter++)
{
questionList.add(new Question(String question, String choiceA, String choiceB, String choiceC, String choiceD, String correctAns));
}

// randomize the order of the questions in the ArrayList
Collections.shuffle(questionList);

最佳答案

在构造函数中,您的分配是向后的。您当前正在用存储的类成员替换传入的参数。切换它们,以便为类成员分配传入的值:

// constructor for the question
public Question(String question, String choiceA, String choiceB, String choiceC, String choiceD, String correctAns)
{
this.question = question;
this.choiceA = choiceA;
this.choiceB = choiceB;
this.choiceC = choiceC;
this.choiceD = choiceD;
this.correctAns = correctAns;
}

“this”指的是类的当前实例,因此是“.”后面的变量名。是类(class)成员。

关于java - 向用户显示随机对象时使用访问器方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55603354/

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