Is it better if I do this:
foreach my $item ( @array ) {
if ( $bool ) {
.. code ..
}
else {
.. code ..
}
}
or
if ( $bool ) {
foreach my $item ( @array ) {
}
}
else {
foreach my $item ( @array ) {
}
}
|
Is it better if I do this:
or
|
|||
|
I would leave premature optimization aside.
You should go for maintainability first and foremost. Group them in the way that makes more sense taking into account the logical structure of the code (such as grouping related statements together). If you later determine that performance is an issue, try measuring with something like a profiler to see where the bottlenecks are. Chances are, it's not there. From Code Complete 2:
We shouldn't try to guess where to optimize before it is necessary since most of us are really bad at guessing where that slow portion of our code is. Programmers who optimize as they go also spend about 96% of their time optimizing code that doesn't need to be optimized. Another thing to take into account is that code tuning (as in this example) considers a tradeoff between readability and maintainability for performance:
I'm not saying don't optimize, but optimize code only in the end, when you have the luxury of the big picture and tools to point you in the right direction. EXTRA: To answer the question of performance itself, though:
Check this other question here on SO. And this from the first edition of Code Complete. |
|||||||||||||||||||
|
|
The second will be faster since many fewer comparisons. -- The compare is outside the loop rather than inside. And since the comparison variable is a loop invariant, I'd be surprised if it wasn't also clearer coding. Actual speed difference (wall clock time) depends on size of the array |
|||
|
|
|
If you're optimizing for speed, the second (foreach loops inside the if branches) should be faster, since you won't be doing the test in each loop iteration. |
|||||||
|
|
Everyone seems stuck on the performance issue. It's almost always better to never have to repeat code. That is, typing the same thing more than once should be painful to you. Since you haven't said anything about the code in each, I'll assume that you want to do different things in each case. My preference is to separate the details of the iteration from the particular processing.
That might lose a tiny bit in performance, but it's a lot easier to look at because it's less tangled code. The |
|||
|
|
|
I suggest you time both and see for yourself, but I don't expect the difference to be huge. |
|||
|
|
|
Simply evaluating a boolean variable as you have done here, these are roughly equivalent. However, if the variable were replaced with a complicated expression that took a long time to evaluate, the second example would be better because it would only be evaluated once. |
|||
if elsefor every iteration of theforeachloop. 2nd example is definitely the way to go. – JohnB Nov 4 '10 at 23:23