What is the difference between printf() and cout in C++?
|
|
From the C++ FAQ:
On the other hand, |
|||||||||||||||||
|
|
And I quote:
|
|||
|
|
|
One is a function that prints to stdout. The other is an object that provides several member functions and overloads of |
||||
|
|
|
People often claim that
Conclusion: if you want only newlines, use To be clear, I'm not trying to say that Update: Here's the full code I used for testing. Compiled with
|
|||||||||||||||||
|
|
For me, the real differences which would make me go for 'cout' rather than 'printf' are: 1) << operator can be overloaded for my classes. 2) Output stream for cout can be easily changed to a file : (: copy paste :)
3) I find cout more readable, especially when we have many parameters. One problem with |
||||
|
|
|
With primitives, it probably doesn't matter entirely which one you use. I say where it gets usefulness is when you want to output complex objects. For example, if you have a class,
Now the above might not seem all that great, but let's suppose you have to output this in multiple places in your code. Not only that, let's say you add a field "int d." With cout, you only have to change it in once place. However, with printf, you'd have to change it in possibly a lot of places and not only that, you have to remind yourself which ones to output. With that said, with cout, you can reduce a lot of times spent with maintenance of your code and not only that if you re-use the object "Something" in a new application, you don't really have to worry about output. |
|||
|
|
of course you can write 'Something' a bit better to keep maintenance:
And a bit extended test of cout vs. printf, added a test of 'double', if anyone wants to do more testing (VS2008, release version of the executable):
The result is:
|
|||
|
|
|
More differences: "printf" returns an integer value (equal to the number of characters printed) and "cout" does not return anything And.
cout performs typechecking, printf doesn't. There's no iostream equivalent of |
|||||||
|
|
I would like say that extensibility lack of
can be possible, if Foo overload the good operator. Or if you made a good method. In short, Technical argument I can see for C++ streams (in general... not only cout.) are:
For
My personal preferences go to |
|||||
|
Both are used to print values. They have completely different syntax. C++ has both, C only has printf. |
|||||||||||||||||||||
|
