摘要: template<typename T>class BlackHoleIterator :public iterator<output_iterator_tag,T>{ typedef BlackHoleIterator<T> _Self;public: _Self &operator*(){return *this;} _Self &operator++(){return *this;} _Self &operator++(int){return *this;} _Self &operator=(const T &) 阅读全文
posted @ 2012-08-15 21:58 vsuu 阅读(119) 评论(0) 推荐(0) 编辑