gpt4 book ai didi

c++ - Stringstream 返回空值

转载 作者:行者123 更新时间:2023-11-28 05:56:54 35 4
gpt4 key购买 nike

为什么这个程序打印出空白?

  string str;
stringstream ss(str);
ss << "A string";

cout << str; // just blank

最佳答案

stringstream 不会修改您传递给其构造函数的参数。

相反,您可以通过调用其 str 成员函数从 stringstream 获取当前缓冲区:

cout << ss.str();

下次,请考虑阅读文档。

关于c++ - Stringstream 返回空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33992021/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com