std :: ostream在函数结尾处打印地址

时间:2012-05-20 15:40:43

标签: c++

我有以下功能:

std::vector<double>residuals;
std::cout << Print_res(std::cout);
std::ostream& Print_res(std::ostream& os) const {

  os << "\tresidual" << std::endl;
  for (unsigned int i = 0 ; i < 22 ; i++) {
    os << "\t\t" << residuals[i] << std::endl;
  }
  os << std::flush;
  return os;
};

它正确打印残差,但在输出的末尾标记了一个地址,如下所示:

2275
2279.08
2224.0835
0x80c5604

我该如何解决这个问题? 编辑:在阅读了所有人的评论之后,我将调用替换为函数Print_res并将std::copy替换为

 std::copy(residuals.begin(), residuals.end(), std::ostream_iterator<double>(std::cout,"\n"));

并且没有打印地址,所以我认为我编写函数的方式有问题。

1 个答案:

答案 0 :(得分:5)

std::cout << Print_res(std::cout);

这在全球范围内不合法,因此您发布的代码无效。如果此语句是从某个函数执行的,那么将调用Print_res,然后Print_res的返回值也将流式传输到std::cout。这很可能不是你的意思。你可能只想要这个:

Print_res(std::cout);

您的陈述执行相当于:

std::cout << std::cout;

在C ++ 03(您必须使用)中,std::coutoperator void*(来自std::basic_ios<char>),其结果是正在打印的内容。