I was listening to a google talk by Andrei Alexandrescu on the D programming language when he threw out a one liner about the "endl" fiasco. I just thought endl was the preferred way to signify the end of a line and flush the buffer for a stream. Why is it considered a fiasco? Should I not be using it in my code?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Reposting from my comment: (I assume) He just means that many, especially new, C++ programmers use I.e., most people are taught that It is some people's opinion (mine included) that |
|||||||||||||||||||||
|
std::endlblindly instead of'\n'for newline, flushing unnecessarily frequently and potentially making performance abysmal. But, I'm just speculating... – ildjarn Mar 30 '11 at 21:10std::endlfor everything rather than\n, which I agree is rather strange. But then again, we're just writing simple console programs. But then again again, he seems to think initializing a (POD) variable in a loop is a potential performance issue... – Maxpm Mar 30 '11 at 21:17