I have a really weird issue with my cout statements. I've only tried this out with XCode 4. For instance, if I write,

cout << "this works" << endl;
cout << "this doesnt";
cout << memorySizeLimit << " blocks of memory available." << endl;

I see all three output statements in my debugger console. However, if I change the order to,

cout << memorySizeLimit << " blocks of memory available." << endl;
cout << "this works" << endl;
cout << "this doesn't";

I only see the first two couts. Even stranger, if I change the code to,

cout << memorySizeLimit << " blocks of memory available." << endl;
cout << "this works" << endl;
cout << "this doesn't" << endl;

I see all three statements.

Why would I not see that "this doesn't" cout statement when I change its position?

link|improve this question

80% accept rate
feedback

1 Answer

up vote 6 down vote accepted

std::cout is an stream and normally it is buffered for performance. If you print endl the stream gets flushed (cout << endl is the same as cout << "\n" << flush.

You may flush the stream manually by cout << flush (or cout.flush()).

So that should print:

cout << "this doesn't" << flush;
link|improve this answer
I was just writing this. :) – Black Frog Mar 27 '11 at 23:02
1  
ditto :) FWIW, this is normal stream behaviour, not Xcode specific – Rob Agar Mar 27 '11 at 23:05
1  
Thanks - I've just never run into this issue before. Pardon the awkward phrase, but I'll remember to flush now! – Nick Sweet Mar 27 '11 at 23:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.