当参数为false时,是否可以将断言输出重定向到文件?我知道它的默认行为是向stderr写一条消息,但以下内容没有按预期工作:
#include <iostream>
#include <assert>
#include <fstream>
using namespace std;
//---------------------------------------------------------------------------
int main(int argc, char* argv[])
{
ofstream ofs;
ofs.open("test.txt", ios_base::out);
ofs << "A";
cerr << "B";
cerr.rdbuf(ofs.rdbuf());
cerr << "C";
assert(1 == 2);
return 0;
}
//---------------------------------------------------------------------------
test.txt 中的结果:
AC
结果是stdout:
B
Assertion failed: 1 == 2, file C:\xxx\Unit1.cpp, line 14
Abnormal program termination
我期待在stdout中打印的这两行最后一行是在 test.txt 文件中。 我也试过用,而不是......
cerr.rdbuf(ofs.rdbuf());
以下内容:
freopen("test.txt", "a", stderr);
但它没有奏效。
我还看到一些帖子(如C: how to redirect stderr from System-command to stdout or file?)建议 dup2 来重定向流,例如stderr,它在 unistd.h 中定义。但是我在Windows上使用的是C ++ Builder,它似乎不可用。
答案 0 :(得分:2)
您可以将所有输出重定向到stderr,或将任何其他标准文件句柄重定向到程序开头的文件。
freopen( "error.log","w",stderr);
在这里阅读:
http://support.microsoft.com/kb/58667
@edit:如果输出转到stdout,那么你需要这样做:
freopen( "error.log","w",stdout );
如果你想追加而不是覆盖error.log:
freopen( "error.log","aw",stdout );