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

这一生的挚爱 提交于 2019-11-30 08:32:21

问题


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

#include <fstream>
class Foo {
Foo();
// not allowed
std::fstream myFile("\\temp\\foo.txt", fstream::in | fstream::out | fstream::trunc);

// allowed
std::fstream myFile;
}

// constructor
Foo::Foo() {
// what form of myFile("\\temp\\foo.txt", fstream::in | fstream::out | fstream::trunc)  can I use here?


myFile = ???
}

回答1:


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!




回答2:


Another option is:

Foo::Foo () {
    myFile.open("\\temp\\foo.txt", fstream::in | fstream::out | fstream::trunc);

    if(!myFile.is_open()) {
        printf("myFile failed to open!");
    }

    //other initialization
}


来源:https://stackoverflow.com/questions/8994157/how-to-instantiate-an-fstream-if-you-declare-it-as-a-member-of-a-class

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!