Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
// my first program in C++

#include <iostream>
using namespace std;

int main ()
{
  cout << "Hello World!";
  return 0;
}

Is cout an object? If so, where is it instantiated? (I don't see something like "new ....")

share|improve this question
You wrote "count". It's helpful to think of it as "c-out" as in "console out". Similarly, there's a "c-in". – Mark Nov 28 '10 at 17:36

6 Answers

cout is a global object declared somewhere in <iostream>.

By the way, unlike in Java or C#, you don't need new to create an object. For instance, this will work:

std::string str; // creates a new std::string object called "str"
share|improve this answer
1  
It's declared in <iostream> not necessarily defined there. – ybungalobill Nov 28 '10 at 17:36
@ybungalobill You are right, I edited. – Etienne de Martel Nov 28 '10 at 17:37

Yes, it is initialize by C++ runtime library when your program startup.

share|improve this answer

cout is an object. It's instantiated by the implementation during the startup of your program. That means that it can happen in the CRT DLL or in the code linked statically.

share|improve this answer

Yes, cout is an object. It's instantiated in <iostream> header file behind your back (together with some other streaming objects like cin or cerr) :)

share|improve this answer

The current C++ standard states (27.3/2):

[...]The objects are constructed, and the associations are established at some time prior to or during first time an object of class ios_base::Init is constructed, and in any case before the body of main begins execution. The objects are not destroyed during program execution.

And from ([iostream.objects]/2:

If a translation unit includes <iostream> or explicitly constructs an ios_base::Init object, these stream objects shall be constructed before dynamic initialization of non-local objects defined later in that translation unit."

In C++ parlance a translation-unit is nothing but a compiler terminology for a file and any/all headers which are included into that file.

share|improve this answer
Well, a file, and any/all headers which are included into that file. – Billy ONeal Nov 28 '10 at 18:24
@Billy: thnx, corrected – Abhay Nov 28 '10 at 18:25

Cout is part of the library you just instantiated in the header IOSTREAM.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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