0

我有一个在构造函数中接受 istream 引用的类。如果构造函数传递了一个临时对象myclass obj(ifstream("filename"));,例如 ifstream 对生命有好处obj吗?它是否取决于它是否分配给类中的引用或指针?

例如:

class test
{
public:
    istream *p;
    test(istream &is)
    {
        p = &is;
        cout << "a constructor" << endl;
    }
    ~test()
    {
        cout << "a destructor" << endl;
    }
    bool isgood()
    {
        return p->good();
    }
};

int main()
{
    test test(ifstream("test.cpp"));
    cout << test.isgood() << endl;
}

输出:

a constructor
1
a destructor

仅仅因为输出说文件很好,我不知道它是否被破坏了。如果有部分标准涵盖了这一点,请告诉我。谢谢

4

1 回答 1

2

对不起,我没有足够的声誉来发表评论。

临时istream只在构造函数中是好的。即使您使用 的地址istream来设置指针的值,一旦构造函数返回,您就不能再使用它。由于在构造函数调用之后,临时 ifstream 已经被关闭并销毁。因此,正如@Josh 提到的,指针将指向垃圾。您可以修改代码以将文件名传递给构造函数并使用文件名来初始化成员ifstream(而不是指向 ifstream 的指针)。然后,您可以在对象的整个生命周期内使用流。

于 2014-02-26T22:56:26.280 回答