Given the need to loop up to an arbitrary int value, is it better programming practice to convert the value into an array and for-each the array, or just use a traditional for loop?
FYI, I am calculating the number of 5 and 6 results ("hits") in multiple throws of 6-sided dice. My arbitrary int value is the dicePool which represents the number of multiple throws.
As I understand it, there are two options:
Convert the dicePool into an array and for-each the array:
public int calcHits(int dicePool) { int[] dp = new int[dicePool]; for (Integer a : dp) { // call throwDice method } }Use a traditional for loop.
public int calcHits(int dicePool) { for (int i = 0; i < dicePool; i++) { // call throwDice method } }
I apologise for the poor presentation of the code above (for some reason the code button on the Ask Question page is not doing what it should).
My view is that option 1 is clumsy code and involves unnecessary creation of an array, even though the for-each loop is more efficient than the traditional for loop in Option 2.
Thanks in advance for any suggestions you might have.
foreachis more efficient compared tofor? – nos Apr 25 '10 at 15:03intvalues around anyway? Don't you have aDicePoolmade up of a collection of dice? Won't you at some point want to know theirlastThrowresult, etc. Or, to put it another way, where did you get the number of throws you need? Probably from some kind of collection that you could iterate over... – Yar Apr 25 '10 at 15:59