Tagged Questions
11
votes
13answers
1k views
Does rearranging a conditional evaluation speed up a loop?
Bit of a weird one: I was told a while ago by a friend that rearranging this example for loop from :
for(int i = 0; i < constant; ++i) {
// code...
}
to:
for(int i = 0; constant > i; ...
7
votes
5answers
522 views
Premature optimization or am I crazy?
I recently saw a piece of code at comp.lang.c++ moderated returning a reference of a static integer from a function. The code was something like this
int& f()
{
static int x;
x++;
return ...