首页  >  文章  >  后端开发  >  能否将标准输出 (stdout) 和标准错误 (stderr) 重定向到 C 中的字符串?

能否将标准输出 (stdout) 和标准错误 (stderr) 重定向到 C 中的字符串?

Barbara Streisand
Barbara Streisand原创
2024-11-02 22:14:30506浏览

Can You Redirect Standard Output (stdout) and Standard Error (stderr) to a String in C  ?

将 stdout/stderr 重定向到字符串

许多讨论都集中在将 stdout/stderr 重定向到文件。但是,是否可以将此输出重定向到字符串?

解决方案

是的,重定向到 std::stringstream 对象是可行的:

<code class="cpp">std::stringstream buffer;
std::streambuf * old = std::cout.rdbuf(buffer.rdbuf());

std::cout << "Bla" << std::endl;

std::string text = buffer.str(); // text will now contain "Bla\n"</code>

为了确保缓冲区自动重置,请考虑使用保护类:

<code class="cpp">struct cout_redirect {
    cout_redirect( std::streambuf * new_buffer ) 
        : old( std::cout.rdbuf( new_buffer ) )
    { }

    ~cout_redirect( ) {
        std::cout.rdbuf( old );
    }

private:
    std::streambuf * old;
};</code>

以上是能否将标准输出 (stdout) 和标准错误 (stderr) 重定向到 C 中的字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn