C++ 中的流重载

发布于 2024-08-29 16:47:49 字数 142 浏览 3 评论 0原文

为什么 void 运算符<<(ostream out, Test &t); 返回一个错误,而 void 运算符<<(ostream &out, Test &t); 不?

why does
void operator<<(ostream out, Test &t);
return an error whereas
void operator<<(ostream &out, Test &t);
does not ?

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

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

发布评论

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

评论(1

披肩女神 2024-09-05 16:47:49

因为您无法复制流,所以您必须按引用传递它们。

请注意,operator<< 的规范形式是这样的:

std::ostream& operator<<(std::ostream& out, const Test &t)
{
   // write t into out
   return out;
}

返回流很重要,这样您就可以将输出串在一起:

std::cout << Test() << '\n';

Because you cannot copy streams, you have to pass them per reference.

Note that the canonical form of operator<< is this:

std::ostream& operator<<(std::ostream& out, const Test &t)
{
   // write t into out
   return out;
}

returning the stream is important so that you can string output together:

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