// 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 ....")
Is |
||||
|
|
cout is a global object declared somewhere in <iostream>. By the way, unlike in Java or C#, you don't need
|
|||||||
|
|
|
|||
|
|
|
Yes, |
||||
|
|
|
The current C++ standard states (27.3/2):
And from ([iostream.objects]/2:
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. |
|||||
|