我有以下功能:
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
我该如何解决?编辑:在阅读了每个人的评论后,我用 as 替换了对函数Print_res
的std::copy
调用
std::copy(residuals.begin(), residuals.end(), std::ostream_iterator<double>(std::cout,"\n"));
并且没有打印地址,所以我认为我编写函数的方式有问题。