vote up 16 vote down star

Many C++ books contain example code like this...

std::cout << "Test line" << std::endl;

...so I've always done that too. But I've seen a lot of code from working developers like this instead:

std::cout << "Test line\n";

Is there a technical reason to prefer one over the other, or is it just a matter of coding style?

flag

8 Answers

vote up 26 vote down check

The varying line-ending characters don't matter, assuming the file is open in text mode, which is what you get unless you ask for binary. The compiled program will write out the correct thing for the system compiled for.

The only difference is that std::endl flushes the output buffer, and '\n' doesn't. If you don't want the buffer flushed frequently, use '\n'. If you do (for example, if you want to get all the output, and the program is unstable), use std::endl.

link|flag
vote up 1 vote down

There's another function call implied in there if you're going to use std::endl

a) std::cout << "Hello\n";
b) std::cout << "Hello" << std::endl;

a calls operator<< once b calls operator<< twice

link|flag
I don't want to seem rude, but that's pretty obvious. If you were to make them equivalent, you'd get two function calls each. – GMan Nov 17 at 22:34
vote up 0 vote down

Not a big deal, but endl won't work in boost::lambda.

(cout<<_1<<endl)(3); //error

(cout<<_1<<"\n")(3); //OK , prints 3
link|flag
vote up 10 vote down

The difference:

std::cout << std::endl;

// is equivalent too

std::cout << "\n" << std::flush();

Use std::endl if you are in a command line app and want to guarantee that the user can see the output immediately.

Use "\n" if you are in a worried about performance (which is probably not the case if you are using the << operator).

I use std::endl mostly out of habit.

Contrary to other claims the "\n" character is mapped to the correct platform end of line sequence if the stream is going to a file (std::cin and std::cout being special but still files (or file like))

link|flag
vote up 2 vote down

I've always had a habit of just using std::endl because it is easy for me to see.

link|flag
vote up 7 vote down

They will both write the appropriate end-of-line character(s). In addition to that endl will cause the buffer to be committed. You usually don't want to use endl when doing file I/O because the unnecessary commits can impact performance.

link|flag
vote up 12 vote down

There might be performance issues, std::endl forces a flush of the output stream.

link|flag
And it can do any other processing that the local system requires to make this work well. – dmckee Oct 17 '08 at 21:32
vote up 5 vote down

Good explanation:

http://cppkid.wordpress.com/2008/08/27/why-i-prefer-n-to-stdendl/

link|flag

Your Answer

Get an OpenID
or

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