<tfoot id='5qMY8'></tfoot>
    1. <legend id='5qMY8'><style id='5qMY8'><dir id='5qMY8'><q id='5qMY8'></q></dir></style></legend>
        <bdo id='5qMY8'></bdo><ul id='5qMY8'></ul>

      1. <small id='5qMY8'></small><noframes id='5qMY8'>

        <i id='5qMY8'><tr id='5qMY8'><dt id='5qMY8'><q id='5qMY8'><span id='5qMY8'><b id='5qMY8'><form id='5qMY8'><ins id='5qMY8'></ins><ul id='5qMY8'></ul><sub id='5qMY8'></sub></form><legend id='5qMY8'></legend><bdo id='5qMY8'><pre id='5qMY8'><center id='5qMY8'></center></pre></bdo></b><th id='5qMY8'></th></span></q></dt></tr></i><div id='5qMY8'><tfoot id='5qMY8'></tfoot><dl id='5qMY8'><fieldset id='5qMY8'></fieldset></dl></div>

        将 ostream 转换为标准字符串

        时间:2024-08-13

            <bdo id='tZ4RZ'></bdo><ul id='tZ4RZ'></ul>
              <tbody id='tZ4RZ'></tbody>

          • <small id='tZ4RZ'></small><noframes id='tZ4RZ'>

            <legend id='tZ4RZ'><style id='tZ4RZ'><dir id='tZ4RZ'><q id='tZ4RZ'></q></dir></style></legend>
                1. <i id='tZ4RZ'><tr id='tZ4RZ'><dt id='tZ4RZ'><q id='tZ4RZ'><span id='tZ4RZ'><b id='tZ4RZ'><form id='tZ4RZ'><ins id='tZ4RZ'></ins><ul id='tZ4RZ'></ul><sub id='tZ4RZ'></sub></form><legend id='tZ4RZ'></legend><bdo id='tZ4RZ'><pre id='tZ4RZ'><center id='tZ4RZ'></center></pre></bdo></b><th id='tZ4RZ'></th></span></q></dt></tr></i><div id='tZ4RZ'><tfoot id='tZ4RZ'></tfoot><dl id='tZ4RZ'><fieldset id='tZ4RZ'></fieldset></dl></div>
                  <tfoot id='tZ4RZ'></tfoot>
                  本文介绍了将 ostream 转换为标准字符串的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我对 C++ STL 很陌生,所以这可能是微不足道的.我有一个 ostream 变量,其中包含一些文本.

                  I am very new to the C++ STL, so this may be trivial. I have a ostream variable with some text in it.

                  ostream* pout;
                  (*pout) << "Some Text";
                  

                  有没有办法提取流并将其存储在 char* 类型的字符串中?

                  Is there a way to extract the stream and store it in a string of type char*?

                  推荐答案

                       std::ostringstream stream;
                       stream << "Some Text";
                       std::string str =  stream.str();
                       const char* chr = str.c_str();
                  

                  我解释了这个问题的答案,这是我一个小时前写的.

                  And I explain what's going on in the answer to this question, which I wrote not an hour ago.

                  这篇关于将 ostream 转换为标准字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:C++中向量的通用向量 下一篇:如何设置 std::vector 的初始大小?

                  相关文章

                  <tfoot id='DIwFt'></tfoot>
                  <i id='DIwFt'><tr id='DIwFt'><dt id='DIwFt'><q id='DIwFt'><span id='DIwFt'><b id='DIwFt'><form id='DIwFt'><ins id='DIwFt'></ins><ul id='DIwFt'></ul><sub id='DIwFt'></sub></form><legend id='DIwFt'></legend><bdo id='DIwFt'><pre id='DIwFt'><center id='DIwFt'></center></pre></bdo></b><th id='DIwFt'></th></span></q></dt></tr></i><div id='DIwFt'><tfoot id='DIwFt'></tfoot><dl id='DIwFt'><fieldset id='DIwFt'></fieldset></dl></div>

                  <legend id='DIwFt'><style id='DIwFt'><dir id='DIwFt'><q id='DIwFt'></q></dir></style></legend>
                    <bdo id='DIwFt'></bdo><ul id='DIwFt'></ul>

                    <small id='DIwFt'></small><noframes id='DIwFt'>