-1

次のように for ループでオブジェクトにアクセスできるようにしたいと考えています。

for (int i=0; i<5: i++)
{ object[i].doSomething(); }

ただし、その部分の構文object[i]は私を逃れます。

4

1 に答える 1

2
for (        // loop
int i = 0;   // initialize the variable i before starting to iterate
i < 5;       // perform the block below while i < 5
i ++ )       // increment i after performing the block below
{                      // start of block to execute in each iteration of the for-loop
    object[i]          // the i-th element of the array object
    .doSomthing();     // call this method on ^^ 
}                      // end block

良い参考文献:

于 2012-04-29T02:20:29.720 に答える