重载<<<运算符打印出一个std :: list

时间:2011-08-10 16:21:12

标签: c++ list iterator std

我在尝试实现重载<<时遇到了一些问题。可以打印出std :: list的operator函数,它是我的一个类的成员。该课程如下:

class NURBScurve {
  vector<double> knotVector;
  int curveOrder;
  list<Point> points;
public:
  /* some member functions */
  friend ostream& operator<< (ostream& out, const NURBScurve& curve);
};

我感兴趣的关键成员变量是“点”列表 - 这是我创建的另一个类,它存储点的坐标以及相关的成员函数。当我尝试实现重载的&lt;&lt;运算符函数为:

ostream& operator<<( ostream &out, const NURBScurve &curve)
{
 out << "Control points: " << endl;
 list<Point>::iterator it;
 for (it = curve.points.begin(); it != curve.points.end(); it++)
    out << *it; 
 out << endl;
 return out;
}

我开始遇到问题。具体来说,我收到以下错误: 错误:

no match for ‘operator=’ in ‘it = curve->NURBScurve::points. std::list<_Tp, _Alloc>::begin [with _Tp = Point, _Alloc = std::allocator<Point>]()’
/usr/include/c++/4.2.1/bits/stl_list.h:113: note: candidates are: std::_List_iterator<Point>& std::_List_iterator<Point>::operator=(const std::_List_iterator<Point>&)

我有点难过,但我相信它与我正在使用的列表迭代器有关。我对curve.points.begin()的符号也不太自信。

如果有人能对这个问题有所了解,我将不胜感激。我已经盯着这个问题太久了!

2 个答案:

答案 0 :(得分:9)

curve符合const标准,因此curve.points符合const标准且curve.points.begin()返回std::list<Point>::const_iterator,而不是std::list<Point>::iterator

容器有两个begin()end()成员函数:一对不是const限定的成员函数并返回iterator s,另一对是const限定的并返回{{1 }}秒。通过这种方式,您可以迭代非const的容器,同时读取和修改其中的元素,但您也可以使用只读访问权限迭代const容器。

答案 1 :(得分:6)

或者,

您可以将std::copy用作:

std::copy(points.begin(), points.end(), 
                      std::ostream_iterator<Point>(outStream, "\n"));

确保operator<<的签名是这样的:

std::ostream & operator <<(std::ostream &out, const Point &pt);
                                            //^^^^^ note this