How to instantiate an fstream if you declare it as a member of a class?

前端 未结 2 959
心在旅途
心在旅途 2020-12-17 18:47

What constructor can you use to instantiate an fstream if you declare it as a member of a class?

#include 
class Foo {
Foo();
// not allowed
s         


        
2条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-12-17 19:20

    In the new version of C++ (C++11), then the above code you have is perfectly fine; initializations are allowed inside the body of a class.

    In C++03 (the previous version of C++), you can initialize the fstream by using the member initializer list like this:

    Foo::Foo() : myFile("file-name", otherArguments) {
        // other initialization
    }
    

    Syntatically, this is done by adding a colon after the constructor name but before the brace, then listing the name of the field you want to initialize (here, myFile), and then in parentheses the arguments you want to use to initialize it. This will cause myFile to be initialized properly.

    Hope this helps!

提交回复
热议问题