关于c_str()将strstream转换为sstream冲突

时间:2017-10-20 09:27:36

标签: c++ compiler-errors sstream c-str strstream

我有strstream编写的代码块。我将其转换为sstream,如下所示。我不确定,但我认为printStream->str()返回一个字符串对象,其中包含printStream指向的流缓冲区中内容的副本(临时),然后您正在调用c_str()在它上面得到一个const char *,然后抛弃const-ness,然后将指针返回到函数作用域之外。我认为,由于它是从printStream->str()返回的临时值,因此您将使用指向此函数之外的释放内存的指针。我该怎么做?

char * FieldData::to_string() const
{
  if(printStream)
    return printStream->str();
  FieldData* notConst = (FieldData*) this;
  notConst->printStream = new std::ostrstream;
  // check heap sr60315556
  if (notConst->printStream == NULL)
    return NULL;
  *(notConst->printStream) << "Invalid Field Type";
  *(notConst->printStream) << '\0';
  return printStream->str();
}

char * FieldData::to_string() const
{
  if(printStream)
    return const_cast<char *>(printStream->str().c_str());
  FieldData* notConst = (FieldData*) this;
  notConst->printStream = new std::ostringstream;
  // check heap sr60315556
  if (notConst->printStream == NULL)
    return NULL;
  *(notConst->printStream) << "Invalid Field Type";
  *(notConst->printStream) << '\0';
  return const_cast<char *>(printStream->str().c_str());
}

2 个答案:

答案 0 :(得分:1)

将返回类型更改为std::string并直接返回std::string个对象。

答案 1 :(得分:1)

我认为名为to_string的函数确实非常 应返回std::string

然后所有这些垃圾都可以被

取代
std::string FieldData::to_string() const
{ return "Invalid Field Type"; }