如何为 std::ostream_iterator 设置前缀

How to set a prefix for std::ostream_iterator?

本文关键字:iterator 设置 前缀 ostream std      更新时间:2023-10-16

我想做这样的事情:

std::ofstream ch("ch_out.txt");
std::ostream_iterator< cgal_class >  out( "p ", ch, "n" );

这可能吗?我担心,因为我的研究说不,希望它被打破了。:)


目标是获取 CGAL 生成的凸包点并将它们写入如下文件中:

p 2 0
p 0 0
p 5 4

使用此代码:

std::ofstream ch("ch_out.txt");
std::ostream_iterator< Point_2 >  out( "p ", ch, "n" );
CGAL::ch_graham_andrew( in_start, in_end, out );

问题是我不想/不能触摸 CGAL 功能。

您必须重载std::ostream类的operator<<,以便它"知道"如何打印自定义类的实例。

以下是我理解您想要完成的最小示例:

#include <iostream>
#include <iterator>
#include <vector>
#include <algorithm>
class MyClass {
 private:
  int x_;
  int y_;
 public:
  MyClass(int x, int y): x_(x), y_(y) {}
  int x() const { return x_; }
  int y() const { return y_; }
};
std::ostream& operator<<(std::ostream& os, const MyClass &c) {
  os << "p " << c.x() << " " << c.y();
  return os;
}
int main() {
  std::vector<MyClass> myvector;
  for (int i = 1; i != 10; ++i) {
    myvector.push_back(MyClass(i, 2*i));
  }
  std::ostream_iterator<MyClass> out_it(std::cout, "n");
  std::copy(myvector.begin(), myvector.end(), out_it);
  return 0;
}