我已经使用了这个类的数组一段时间了,而且我一直在使用foreach但是当我尝试使用for循环(实际上是索引)访问它时它会从数组中出来。有什么帮助吗?
- 工作 -
[TestMethod]
public void Scorer_FullHouse_ReturningZero()
{
SetOfDice[] diceRolls = new SetOfDice[] {
new SetOfDice(new int[] {1,1,2,2,3}),
new SetOfDice(new int[] {3,5,3,4,3}),
new SetOfDice(new int[] {7,7,7,7,7})
};
foreach (SetOfDice roll in diceRolls)
{
int score = scorer.getScore(roll, category);
Assert.AreEqual(score, 0);
}
}
- 不工作 -
System.IndexOutOfRangeException:索引超出了数组的范围。
[TestMethod]
public void Scorer_ThreeOfAKind_Success()
{
SetOfDice[] diceRolls = new SetOfDice[] {
new SetOfDice(new int[] {1,2,1,4,1}),
new SetOfDice(new int[] {1,7,6,5,2}),
new SetOfDice(new int[] {8,8,8,8,8})
};
int[] expectedResults = new int[] {
9,
0,
40
};
for (int i = 0; i < expectedResults.Length; i++)
{
Assert.AreEqual(expectedResults[i], scorer.getScore(diceRolls[i], GameVariables.Category.ThreeOfAKind));
}
}
答案 0 :(得分:0)
也许问题出在其他地方。但是你可以通过查看堆栈跟踪来确保它。您也可以按如下方式更改for循环:
for (int i = 0; i < Math.Min(expectedResults.Length,diceRolls.length) ; i++)
{
Assert.AreEqual(expectedResults[i], scorer.getScore(diceRolls[i], GameVariables.Category.ThreeOfAKind));
}
现在,如果您使用此for循环执行它并且您仍然拥有System.IndexOutOfRangeException
,那么您知道它来自其他东西。