Re: cin - Why Does It Require 2 Returns?
On Aug 23, 8:01 am, Juha Nieminen <nos...@thanks.invalid> wrote:
James Kanze <james.ka...@gmail.com> wrote:
Unless the programmer understands buffering, and what it does,
he should use std::endl. It's just too hard to debug a program
when you don't know where it crashed, because part of your
output hasn't appeared.
I don't think one should rely on the output of std::cout for debugging
purposes anyways. If adding debug prints, std::cerr should be used instead
of std::cout.
If you're adding debug prints, yes. std::cerr is the usual and
correct destination. If your program unexpectedlyh crashes when
handling client data, however, it's often very helpful to see
just how far it got.
std::cerr will flush after each *character* (ok, I don't know
if that's by standard, but at least the last time I checked with gcc it
does). This is of course horribly slow, but good for debugging.
No ostream will flush after each character, unless you turn off
buffering. std::cerr will flush after every << operator.
And of course a good debugger will tell you where the program crashed.
(Ok, not always, if the crash was caused by memory corruption which
manifests itself in a completely unrelated part of the program. But
debug prints won't help in that situation much either.)
Agreed, but how much output has already occured can often be a
good additional hint.
--
James Kanze