次のように for ループでオブジェクトにアクセスできるようにしたいと考えています。
for (int i=0; i<5: i++)
{ object[i].doSomething(); }
ただし、その部分の構文object[i]
は私を逃れます。
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
良い参考文献: