So std::cout is an object. My doubt is how/where is it constructed/instantiated.
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s constructed by
ios_base::Init. First time that object is created,coutand friends are created. If the last object is destroyed,coutand friends are flushed (calling.flush()).In C++0x it will be guaranteed that if you include
<iostream>, and use ofcoutand friends after the#includewill use constructedcoutand friends objects. In C++03, it is said that