当参数为假时,是否可以将断言输出重定向到文件?我知道它的默认行为是向 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
并导致标准输出:
B
Assertion failed: 1 == 2, file C:\xxx\Unit1.cpp, line 14
Abnormal program termination
我期待在标准输出中打印的最后两行在test.txt文件中。我也尝试过使用,而不是...
cerr.rdbuf(ofs.rdbuf());
以下:
freopen("test.txt", "a", stderr);
但效果不佳。
我还看到一些帖子(如C:如何将 stderr 从 System-command 重定向到 stdout 或文件?)建议dup2重定向流,例如在unistd.h中定义的 stderr 。但我在 Windows 上使用 C++Builder,它似乎不可用。