stringstream是如何工作的

How stringstream works?

本文关键字:工作 何工作 stringstream      更新时间:2023-10-16

我在程序中使用stringstream类型变量。以下是代码片段:

stringstream keyvalueStream;
keyvalueStream << // appending some string 
somefun(keyvalueStream.str().c_str()); // Passing the char*
keyvalueStream.str(std::string()); // clearing the content of this variable.

清除keyvalueStream的内容是否会影响我将在somefun()中获得的字符串?

您的问题的答案取决于somefun与您传递给它的char const *的关系,而不是取决于您是否清除stringstream的内容。

stringstream::str按值返回std::string对象,因此稍后是否清除stringstream内容无关紧要。

在表达式

somefun(keyvalueStream.str().c_str());
当调用somefun返回时,

返回的string对象将被销毁。因此,如果somefun以某种方式存储char const *以供以后使用,那么将会有未定义的行为。如果它在当前函数调用中对参数进行操作,则代码是安全的。

当到达keyvalueStream.str(std::string());在代码片段中somefun(keyvalueStream.str().c_str());已经完成了执行,所以没有。如果这是你的问题。

不,它不会影响你已经传递给somefun()的内容。Stringstream::str()按值返回,这样您就可以获得流中数据的副本,而不是对它的引用。

是。它将.

然而,一旦你得到底层的str,你甚至不应该调用c_str()

从cppreference

指出

str返回的底层字符串的副本是一个临时对象,将在表达式结束时被销毁,因此在str()的结果上直接调用c_str()(例如auto *ptr = out.str().c_str();)会产生一个悬垂指针。