如何使用模板重载流插入运算符?

发布于 2024-10-03 16:12:06 字数 444 浏览 5 评论 0原文

我正在尝试重载流插入运算符,以便可以将 std::vector 打印到 std::cout,但我遇到语法问题。

这就是我尝试过的:

template<typename T> std::ostream & operator<<(std::ostream &os, std::vector<T> &v)
{
    std::copy(v.begin(), v.end(), std::ostream_iterator<T>(os, ', '));
    return os;
};

我想像这样使用它:

std::vector<float> v(3, 1.f);
std::cout << v;

这种运算符重载的正确语法是什么?

I am trying to overload the stream insertion operator so can I print std::vector to std::cout, but I'm having problem with syntax.

This is what I tried:

template<typename T> std::ostream & operator<<(std::ostream &os, std::vector<T> &v)
{
    std::copy(v.begin(), v.end(), std::ostream_iterator<T>(os, ', '));
    return os;
};

And I wanted to use it like this:

std::vector<float> v(3, 1.f);
std::cout << v;

What is the correct syntax for that kind of operator overloading?

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

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

发布评论

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

评论(1

|煩躁 2024-10-10 16:12:06

代码几乎没问题,但是:

  • 分隔符 ', ' 不正确:使用 ", "
  • 您的函数可以(并且应该)采用对 v 的 const 引用:const std::vector; &v
  • 函数右大括号后面有一个不必要的 ; :)

郑重声明,', ' 是一个 int 类型的多字符常量 因此编译器会抱怨 没有重载code>std::ostream_iterator 构造函数与参数列表 '(std::ostream, int)' 匹配。

The code is almost fine, however :

  • The separator ', ' is incorrect : use ", "
  • Your function could (and should) take a const reference to v : const std::vector<T> &v
  • There is an unnecessary ; after the function close brace :)

For the record, ', ' is a multi-character constant of type int so the compiler complains that no overload of std::ostream_iterator constructor matches the argument list '(std::ostream, int)'.

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