previous | start | next

Stepping Through all Elements

for (int i = 0; i < coins.size(); i++)
{
Coin c = (Coin)coins.get(i);
do something with c
}


previous | start | next