次のコードは、匿名ストリームと名前付きストリームの両方を含むファイルに文字列リテラルを出力します。
#include <fstream>
using namespace std;
int main()
{
ofstream("testfile") << "test" << endl;
ofstream ofs ("testfile2");
ofs << "test2" << endl;
return 0;
}
straceの出力からわかるように、名前付きストリームのみが機能します。
open("testfile", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 3
write(3, "0x400a91\n", 9) = 9
close(3) = 0
open("testfile2", O_WRONLY|O_CREAT|O_TRUNC, 0666) = 3
write(3, "test2\n", 6) = 6
close(3) = 0
また、リテラルの代わりにstd :: stringを使用すると、コンパイルに失敗します。
どうしてこれなの?