0

我收到编译错误“错误的索引数量 []:预期为 1”。但为什么?我想我没有做任何奇怪的事情。

这是代码(在一个函数内):

// **valoresMonedas is a Int32[] array passed as parameter**
Int32[] valores = valoresMonedas; 
Int32[][] matrixnN;

Int32 valMon = valoresMonedas.Count();
matrixnN = new Int32[valMon][]; 

for (Int32 i=0;i< cantidadTotal;i++){
  // **cantidadTotal is a Int32 passed as parameter**
  matrixnN[i] = new Int32[cantidadTotal]; 
}

for (Int32 i=0;i< valMon; i++){
  matrixnN[i][0] = 0;
}

// some code... (just if / for / assignations ..)
matrixnN[0][1] = 1 + matrixnN[1, 1 + valores[1]]; // <-- THE ERROR IS HERE

谢谢你的任何建议

4

3 回答 3

2

你所要做的

matrixnN[1][1 + valores[1]]

或两个索引的其他组合,而不是

matrixnN[1, 1 + valores[1]]

你有一个错误的逗号,应该有另一对括号。

于 2012-04-14T16:47:32.640 回答
2

你的意思是?

matrixnN[0][1] = 1 + matrixnN[1][1 + valores[1]];
于 2012-04-14T16:47:45.627 回答
1

我想matrixnN[1, 1 + valores[1]]应该是matrixnN[1][1 + valores[1]]

于 2012-04-14T16:47:50.573 回答