我正在尝试在我的对象中添加一个字符串数组。这是我的对象的代码: 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])
添加回答
举报
0/150
提交
取消