为了账号安全,请及时绑定邮箱和手机立即绑定

在对象内添加字符串数组

在对象内添加字符串数组

互换的青春 2021-07-09 14:02:06
我正在尝试在我的对象中添加一个字符串数组。这是我的对象的代码:    public Question(int id, String question, String[] answers) {    this.id = id;    this.question = question;    this.answers = answers;}这是我遇到麻烦的地方        questionList.add(            new Question(                    1,                    "This is a question?",    ));
查看完整描述

3 回答

?
30秒到达战场

TA贡献1828条经验 获得超6个赞

您仍然需要将答案作为第三个参数发送。此外,它没有说明您定义 questionList 的位置。

要创建您的“答案”参数,一种方法是。

String[] answers = new String[]{"Answer 1", "Answer 2"};

您还可以将列表转换为数组。

String[] answers = Arrays.asList("Answer 1", "Answer 2").toArray(new String[0])


查看完整回答
反对 回复 2021-07-14
  • 3 回答
  • 0 关注
  • 210 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信