<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 转换为标准字符串

        Converting ostream into standard string(将 ostream 转换为标准字符串)

            <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 转换为标准字符串的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Unable to access non-const member functions of objects in C++ std::set(无法访问 C++ std::set 中对象的非常量成员函数)
                  How should a size-limited stl-like container be implemented?(应该如何实现大小受限的 stl 类容器?)
                  Constructing std::function argument from lambda(从 lambda 构造 std::function 参数)
                  STL BigInt class implementation(STL BigInt 类实现)
                  Sync is unreliable using std::atomic and std::condition_variable(使用 std::atomic 和 std::condition_variable 同步不可靠)
                  Move list element to the end in STL(在 STL 中将列表元素移动到末尾)

                  <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>
                    <tbody id='DIwFt'></tbody>

                  <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'>