我的类应该是什么类型才能访问类及其扩展的类?

发布于 2024-09-15 19:15:52 字数 557 浏览 9 评论 0原文

您有

public class Question

public class MultipleChoice extends Question

主要

public class SurveyQuestions

SurveyQuestions 有

private static List<Question> q = new ArrayList<Question>();

您不断添加问题以及问题组成的所有内容到列表中。

完成后,您想要迭代列表

for (Question q : SurveyQuestions.getInstance().getListOfQuestions())

Question:“q”应该是什么类型,以便它可以访问 Question 和 MultipleChoice?

you have

public class Question

and

public class MultipleChoice extends Question

and

public class SurveyQuestions

where SurveyQuestions has

private static List<Question> q = new ArrayList<Question>();

In main you keep adding questions and all the things questions are composed of to the list.

Once done, you want to iterate over the list

for (Question q : SurveyQuestions.getInstance().getListOfQuestions())

Question: What type should "q" be so that it has access to both Question and MultipleChoice?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

恍梦境° 2024-09-22 19:15:52

如果“访问”的意思是“访问...的方法”,则不能将其作为 MultipleChoice,因为有些问题可能并非如此。所以它必须是Question,然后你可以通过if(q instanceof MultipleChoice)检查它是否是多项选择

If by "access to" you mean "access to the methods of"- you can't have it as MultipleChoice because some questions might not be such. So it has to be Question, and then you can check if it is a multiple-choice by if(q instanceof MultipleChoice)

↙温凉少女 2024-09-22 19:15:52

您应该将其设为问题

您不能将 MultipleChoice 作为一个普通的问题不是一个MultipleChoice...而是一个MultipleChoice 是一个 问题。所以 Question 可以代表这两种类型。

You should make it Question.

You can't make it MultipleChoice as a plain Question is not a MultipleChoice... but a MultipleChoice is a Question. So Question can represent both types.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文