Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.
#include <iostream>
#include <fstream>
using namespace std;

int main () {
  ofstream myfile;
  myfile.open ("test.txt");
  return 0;
}

fstream is derived from iostream, why should we include both in the code above?

I removed fstream, however, there is an error with ofstream. My question is ofstream is derived from ostream, why fstream is needed to make it compile?

share|improve this question
2  
Is it really necessary to title everything "One questions about..."? – dmckee Mar 16 '10 at 2:54
3  
Changed the title to something meaningful. @skydoor: remember that the question title is supposed to tell people what your question is. Just saying that your question is indeed a question doesn't really tell us anything we didn't know. – jalf Mar 16 '10 at 3:09

2 Answers

up vote 12 down vote accepted

You need to include fstream because that's where the definition of the ofstream class is.

You've kind of got this backwards: since ofstream derives from ostream, the fstream header includes the iostream header, so you could leave out iostream and it would still compile. But you can't leave out fstream because then you don't have a definition for ofstream.

Think about it this way. If I put this in a.h:

class A {
  public:
    A();
    foo();
};

And then I make a class that derives from A in b.h:

#include <a.h>

class B : public A {
  public:
    B();
    bar();
};

And then I want to write this program:

int main()
{
  B b;
  b.bar();

  return 0;
}

Which file would I have to include? b.h obviously. How could I include only a.h and expect to have a definition for B?

Remember that in C and C++, include is literal. It literally pastes the contents of the included file where the include statement was. It's not like a higher-level statement of "give me everything in this family of classes".

share|improve this answer

std::ofstream is defined in the <fstream> standard library header.

You need to include that header for its definition so that you can instantiate it.

share|improve this answer
so why ofstream is derived from ostream? – skydoor Mar 16 '10 at 2:09
Because it is an output stream. – James McNellis Mar 16 '10 at 2:11

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.