main()にofstreamを構築したくありません。ここで私は何をしていますが、コンパイルしません:クラスのストリームの初期化
#include <fstream>
using namespace std;
class test
{
private:
ofstream &ofs;
public:
test(string FileName);
void save(const string &s);
};
//----------------
test::test(string FileName)
: ofs(ofstream(FileName.c_str(),ios::out))
{
}
//----------------
void test::save(const string &s)
{
ofs << s;
}
//----------------
//Provide file name and to-be-written string as arguments.
int main(int argc,char **argv)
{
test *t=new test(argv[0]);
t->save(argv[1]);
delete t;
}
test.cpp: In constructor ‘test::test(std::string)’:
test.cpp:13: error: invalid initialization of non-const reference of type ‘std::ofstream&’ from a temporary of type ‘std::ofstream’
コードを修正するには?
注(少なくともとの結合に対して一時的な)が、 'test'インスタンスは、コンストラクタの実行の終了時に破棄された一時オブジェクトへの参照を保持します。 –
この場合、オブジェをオブジェクトとして宣言するにはどうすればよいですか? –
@AndréCaron:言い換えれば、 'ofs'をconst参照として宣言することは解決策ではありません。 – Nawaz