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?
|
show 1 more comment
feedback
|
|
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 | |||||||||||||||||||||
feedback
|
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