ostringstream 和复制构造函数的问题

发布于 2024-11-29 04:16:43 字数 807 浏览 1 评论 0原文

可能的重复:
为什么不允许复制 stringstream?
如何在 C++ 中从一个 stringstream 对象复制到另一个 stringstream 对象?< /a>

编译类 T 失败,Visual C++ 和 GCC 产生 iostreams 模板错误。下面是代码:

#include <sstream>

class T
{
  static T copy;

  std::ostringstream log;

  T()            {}
  T(const T& t)  {log  = t.log;}
  ~T()           {copy = *this;}
};

T T::copy;

log 数据成员类型更改为字符串使其编译并运行正常。这是合法行为吗?

Possible Duplicates:
Why copying stringstream is not allowed?
how copy from one stringstream object to another in C++?

Compiling class T fails with Visual C++ and GCC producing iostreams template errors. Here is the code:

#include <sstream>

class T
{
  static T copy;

  std::ostringstream log;

  T()            {}
  T(const T& t)  {log  = t.log;}
  ~T()           {copy = *this;}
};

T T::copy;

Changing log data member type to string makes it compile and run OK. Is this a legitimate behavior?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

蓝眸 2024-12-06 04:16:43

C++ 中任何流类的复制构造函数和复制赋值已设为私有。这意味着,您无法复制 std::ostringstream 对象:

std::ostringstream ss;

std::ostringstream ss1(ss); //not allowed - copy-constructor is private
ss1=ss; //not allowed - copy-assignment is private

Copy constructor and copy-assignment of any stream class in C++ has been made private. That means, you cannot make copy of std::ostringstream object:

std::ostringstream ss;

std::ostringstream ss1(ss); //not allowed - copy-constructor is private
ss1=ss; //not allowed - copy-assignment is private
浪漫之都 2024-12-06 04:16:43

std::ostringstream 不可复制,这就是您收到错误的原因。请参阅此答案了解更多详细信息如何克服这个问题。

T(const T& t)  {log << t.log.rdbuf(); }

std::ostringstream is not copyable that's why you are getting error. See this answer for more details to know how you can overcome this problem.

T(const T& t)  {log << t.log.rdbuf(); }
白馒头 2024-12-06 04:16:43

我认为 ostringstream 没有重载的赋值(=)运算符。

I think ostringstream has no overloaded assignment(=) operator.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文