C ++ std :: stringstream运算符<< vs(构造函数)

时间:2018-04-07 05:04:33

标签: c++ constructor stringstream

我的期望是我可以创建一个未初始化的std::stringstream并将其提供给字符串,或者最初使用相同的流创建它并获得相同的结果。当我做第一个案例时,代码按照我的预期运行。然后我尝试了第二种情况,期望会有相同的结果没有发生。我错过了什么?

第一个案例的碎片。

...
int main() {
constexpr auto APTCP_XML_DOC_PREFIX            {R"EOD(<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE doc [<!ENTITY nbsp "&#xa0;">]>
<doc>
<head>
</head>
<body>
)EOD"};
   std::stringstream xml_doc; xml_doc << APTCP_XML_DOC_PREFIX;
...
   if (transformer.transform(xml_doc, style_sheet, std::cout) != 0)
      std::cerr << "aptcp/main()/transformer.getLastError(): " << transformer.getLastError() << "\n" << style_sheet.str() << xml_doc.str();
   }

第二种情况已经xml_doc以这种方式初始化。

   std::stringstream xml_doc(APTCP_XML_DOC_PREFIX);

出现此错误:

Fatal Error: comment or processing instruction expected (Occurred in an unknown entity, at line 2, column 1.)
aptcp/main()/transformer.getLastError(): SAXParseException: comment or processing instruction expected (Occurred in an unknown entity, at line 2, column 1.)
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet id="aptcp_stylesheet"
                version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output
            method="html"
            version="4.01"
            indent="yes"
            doctype-system="http://www.w3.org/TR/html4/strict.dtd"
            doctype-public="-//W3C//DTD HTML 4.01//EN"/>
<xsl:template match="xsl:stylesheet" />
<xsl:param name="current_time_p"/>
<xsl:template match="/">
  <html>
  <body>
    <style>
    pp {display: none;}
    pp, table, tr {
        width: 100%;
...

1 个答案:

答案 0 :(得分:1)

此代码:

#include <iostream>
#include <sstream>
#include <string>
#include <utility>
#include <cstring>

int main() {
    constexpr auto BEFORE {"Before"};

    std::stringstream un; un << BEFORE;
    un << "UN";
    std::cout << "un=" << un.str() << "." << std::endl;

    std::stringstream con(BEFORE);
    con << "CON";
    std::cout << "con=" << con.str() << "." << std::endl;
    }

表示该值位于前面而不是末尾。

un=BeforeUN.
con=CONore.

要回答这个问题,缺少模式(std::ios::ate "seek to the end of stream immediately after open"):

std::stringstream xml_doc(APTCP_XML_DOC_PREFIX,
    std::ios::in|std::ios::out|std::ios::ate);