为2个数组赋值和对象 - Java

时间:2013-10-04 12:37:32

标签: java arrays

一直试图绕过这个逻辑,也许你们可以指出我正确的方向。

我有两个String [],一个包含问题选项,另一个包含选项是否正确。

示例:

String question = "Which of the following are fruit";

String[] questionOptions = "Mangos-Apples-Potatoes-Bananas".split("-");

String[] questionOptionsCorrect = "Y-Y-N-Y".split("-");

我将List传递给我的webservice,其中每个answerObject包含一个选项,以及它是否是正确的选项。

示例:

List< AnswerObjects > optionList = new ArrayList< AnswerObjects >();

answerObject.setAnswerText(Mangos);

answerObject.setAnswerCorrect(Y);

optionList.add(answerObject);

所以我的问题是,如何遍历数组并为每个对象分配正确的选项和optionCorrect。

感谢任何愿意帮助的人。

2 个答案:

答案 0 :(得分:2)

假设你的问题数组和答案数组是并行的

 for(int i = 0 ; i< questionOptions.length;i++)
    {
        AnswerObject answerObject = new AnswerObject();
         answerObject.setAnswerText(questionOptions[i]);

        answerObject.setAnswerCorrect(questionOptionsCorrect[i]);
    }

答案 1 :(得分:1)

由于你有两个“并行”数组,你可以循环其中一个的索引,并使用两者的索引:

if (questionOptionsCorrect.length != questionOptions.length) {
    // Throw an exception here: the arrays must have the same length
    // for the code below to work
}
for (int i = 0 ; i != questionOptionsCorrect.length ; i++) {
    AnswerObjects ans = new AnswerObjects();
    ans.setAnswerText(questionOptions[i]);
    ans.setAnswerCorrect(questionOptionsCorrect[i]);
}