for (i=0 ; i<=10; i++)
{
..
..
}
i=0;
while(i<=10)
{
..
..
i++;
}
in for and while loop which one is more better performance wise
|
2
|
in for and while loop which one is more better performance wise
|
|||
|
|
|
|
Program efficiency comes from proper algorithms, good object-design, smart program architecture, etc. Shaving a cycle or two with for loops vs while loops will NEVER make a slow program fast, or a fast program slow. If you want to improve program performance in this section, find a way to either partially unroll the loop (see Duff's Device), or improve performance of what is done inside the loop. |
||
|
|
|
|
The performance will be the same. However, unless you need to access the |
||
|
|
|
|
Normally i would choose a foreach iteration instead. iterating strongly typed objects. But offcourse sometimes that is not a option and "for/while" is needed... |
||
|
|
|
|
Yes, they are euqivalent. |
||
|
|
|
|
I would say they are the same and you should never do such micro-optimizations anyway. |
||
|
|
|
|
Neither one. They are equivalent. You can think of the 'for' loop being a more compact way of writing the while-loop. |
||
|
|
|
|
(update)
Actually - there is one scenario where the
In this very specific case, it skips the bounds checking, as it already knows that it will never be out of bounds. Interestingly, if you "hoist"
However, with other containers ( (end update) Neither; a for loop is evaluated as a while loop under the hood anyway. For example 12.3.3.9 of ECMA 334 (definite assignment) dictates that a for loop:
is essentially equivalent (from a Definite assignment perspective (not quite the same as saying "the compiler must generate this IL")) as:
Now, this doesn't mean that the compiler has to do exactly the same thing, but in reality it pretty much does... |
|||
|
|