首頁  >  文章  >  後端開發  >  能否將標準輸出 (stdout) 和標準錯誤 (stderr) 重定向到 C 中的字串?

能否將標準輸出 (stdout) 和標準錯誤 (stderr) 重定向到 C 中的字串?

Barbara Streisand
Barbara Streisand原創
2024-11-02 22:14:30507瀏覽

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