📄 stl_iterator.h
字号:
char_type operator*() const
{ return _M_is_initialized ? _M_c : _M_dereference_aux(); }
istreambuf_iterator<_CharT, _Traits>& operator++() { this->_M_nextc(); return *this; }
istreambuf_iterator operator++(int) {
if (!_M_is_initialized)
_M_postincr_aux();
istreambuf_iterator<_CharT, _Traits> __tmp = *this;
this->_M_nextc();
return __tmp;
}
bool equal(const istreambuf_iterator<_CharT, _Traits>& __i) const {
return this->_M_is_initialized && __i._M_is_initialized
? this->_M_eof == __i._M_eof
: this->_M_equal_aux(__i);
}
private:
void _M_init(streambuf_type* __p) {
_M_buf = __p;
_M_eof = !__p;
_M_is_initialized = _M_eof;
}
char_type _M_dereference_aux() const;
bool _M_equal_aux(const istreambuf_iterator<_CharT, _Traits>&) const;
void _M_postincr_aux();
void _M_nextc() {
int_type __c = _M_buf->snextc();
_M_c = traits_type::to_char_type(__c);
_M_eof = traits_type::eq_int_type(__c, traits_type::eof());
_M_is_initialized = true;
}
void _M_getc() const
{
int_type __c = _M_buf->sgetc();
# ifndef __STL_NEED_MUTABLE
_M_c = traits_type::to_char_type(__c);
_M_eof = traits_type::eq_int_type(__c, traits_type::eof());
_M_is_initialized = true;
# else
typedef istreambuf_iterator<_CharT,_Traits> _Self;
_Self* that = __CONST_CAST(_Self*, this);
that->_M_c = traits_type::to_char_type(__c);
that->_M_eof = traits_type::eq_int_type(__c, traits_type::eof());
that->_M_is_initialized = true;
# endif
}
private:
streambuf_type* _M_buf;
mutable _CharT _M_c;
mutable bool _M_eof : 1;
mutable bool _M_is_initialized : 1;
};
template<class _CharT, class _Traits>
inline bool operator==(const istreambuf_iterator<_CharT, _Traits>& __x,
const istreambuf_iterator<_CharT, _Traits>& __y) {
return __x.equal(__y);
}
#ifdef __STL_USE_SEPARATE_RELOPS_NAMESPACE
template<class _CharT, class _Traits>
inline bool operator!=(const istreambuf_iterator<_CharT, _Traits>& __x,
const istreambuf_iterator<_CharT, _Traits>& __y) {
return !__x.equal(__y);
}
#endif /* __STL_USE_SEPARATE_RELOPS_NAMESPACE */
// The default template argument is declared in iosfwd
template<class _CharT, class _Traits>
class ostreambuf_iterator
{
public:
typedef _CharT char_type;
typedef _Traits traits_type;
typedef typename _Traits::int_type int_type;
typedef basic_streambuf<_CharT, _Traits> streambuf_type;
typedef basic_ostream<_CharT, _Traits> ostream_type;
typedef output_iterator_tag iterator_category;
typedef void value_type;
typedef void difference_type;
typedef void pointer;
typedef void reference;
public:
ostreambuf_iterator(streambuf_type* __buf) : _M_buf(__buf), _M_ok(__buf!=0) {}
ostreambuf_iterator(ostream_type& __o)
: _M_buf(__o.rdbuf()), _M_ok(__o.rdbuf()!=0) {}
ostreambuf_iterator<_CharT, _Traits>& operator=(char_type __c) {
_M_ok = _M_ok && !traits_type::eq_int_type(_M_buf->sputc(__c),
traits_type::eof());
return *this;
}
ostreambuf_iterator<_CharT, _Traits>& operator*() { return *this; }
ostreambuf_iterator<_CharT, _Traits>& operator++() { return *this; }
ostreambuf_iterator<_CharT, _Traits>& operator++(int) { return *this; }
bool failed() const { return !_M_ok; }
private:
streambuf_type* _M_buf;
bool _M_ok;
};
# ifndef __STL_CLASS_PARTIAL_SPECIALIZATION
# ifdef __STL_LIMITED_DEFAULT_TEMPLATES
template <class _Tp>
inline output_iterator_tag
iterator_category(const ostream_iterator<_Tp>&) {
return output_iterator_tag();
}
# else
template <class _Tp, class _CharT, class _Traits>
inline output_iterator_tag
iterator_category(const ostream_iterator<_Tp, _CharT, _Traits>&) {
return output_iterator_tag();
}
# endif /* __STL_LIMITED_DEFAULT_TEMPLATES */
template <class _CharT, class _Traits>
inline input_iterator_tag
iterator_category(const istreambuf_iterator<_CharT, _Traits>&) {
return input_iterator_tag();
}
template <class _CharT, class _Traits>
inline streamoff
difference_type(const istreambuf_iterator<_CharT, _Traits>&) {
typedef streamoff __off_type;
return __off_type();
}
template <class _CharT, class _Traits>
inline _CharT*
value_type(const istreambuf_iterator<_CharT, _Traits>&) {
return (_CharT*)0;
}
template <class _CharT, class _Traits>
inline output_iterator_tag
iterator_category(const ostreambuf_iterator<_CharT, _Traits>&) {
return output_iterator_tag();
}
# endif /* __STL_CLASS_PARTIAL_SPECIALIZATION */
# endif /* namespaces */
# else /* __STL_USE_NEW_IOSTREAMS */
# if defined (__STL_MINIMUM_DEFAULT_TEMPLATE_PARAMS) && ! defined (__STL_DEFAULT_TYPE_PARAM)
# define __ISI_TMPL_HEADER_ARGUMENTS class _Tp
# define __ISI_TMPL_ARGUMENTS _Tp
template <class _Tp>
# else
# define __ISI_TMPL_HEADER_ARGUMENTS class _Tp, class _Dist
# define __ISI_TMPL_ARGUMENTS _Tp, _Dist
template <class _Tp, __DFL_TYPE_PARAM(_Dist, ptrdiff_t)>
# endif
class istream_iterator {
protected:
istream* _M_stream;
_Tp _M_value;
bool _M_end_marker;
void _M_read() {
_M_end_marker = (*_M_stream) ? true : false;
// _M_end_marker = !_M_stream->fail();
if (_M_end_marker) *_M_stream >> _M_value;
_M_end_marker = (*_M_stream) ? true : false;
// _M_end_marker = !_M_stream->fail();
}
public:
typedef input_iterator_tag iterator_category;
typedef _Tp value_type;
typedef _Dist difference_type;
typedef const _Tp* pointer;
typedef const _Tp& reference;
istream_iterator() : _M_stream(&cin), _M_end_marker(false) {}
istream_iterator(istream& __s) : _M_stream(&__s) { _M_read(); }
reference operator*() const { return _M_value; }
__STL_DEFINE_ARROW_OPERATOR
istream_iterator< __ISI_TMPL_ARGUMENTS >& operator++() {
_M_read();
return *this;
}
istream_iterator< __ISI_TMPL_ARGUMENTS > operator++(int) {
istream_iterator< __ISI_TMPL_ARGUMENTS > __tmp = *this;
_M_read();
return __tmp;
}
inline bool _M_equal(const istream_iterator< __ISI_TMPL_ARGUMENTS >& __y) const {
return (_M_stream == __y._M_stream &&
_M_end_marker == __y._M_end_marker) ||
_M_end_marker == false && __y._M_end_marker == false;
}
};
template <class _Tp>
class ostream_iterator {
protected:
ostream* _M_stream;
const char* _M_string;
public:
typedef output_iterator_tag iterator_category;
# ifdef __STL_CLASS_PARTIAL_SPECIALIZATION
typedef void value_type;
typedef void difference_type;
typedef void pointer;
typedef void reference;
# endif
ostream_iterator(ostream& __s) : _M_stream(&__s), _M_string(0) {}
ostream_iterator(ostream& __s, const char* __c)
: _M_stream(&__s), _M_string(__c) {}
ostream_iterator<_Tp>& operator=(const _Tp& __value) {
*_M_stream << __value;
if (_M_string) *_M_stream << _M_string;
return *this;
}
ostream_iterator<_Tp>& operator*() { return *this; }
ostream_iterator<_Tp>& operator++() { return *this; }
ostream_iterator<_Tp>& operator++(int) { return *this; }
};
#ifndef __STL_CLASS_PARTIAL_SPECIALIZATION
template <class _Tp>
inline output_iterator_tag
iterator_category(const ostream_iterator<_Tp>&) {
return output_iterator_tag();
}
#endif /* __STL_CLASS_PARTIAL_SPECIALIZATION */
#endif /* __STL_USE_NEW_IOSTREAMS */
# if (defined (__STL_USE_OWN_NAMESPACE) || !defined(__STL_USE_NAMESPACES) || !defined(__STL_USE_NEW_IOSTREAMS) )
template < __ISI_TMPL_HEADER_ARGUMENTS >
inline bool
operator==(const istream_iterator< __ISI_TMPL_ARGUMENTS >& __x,
const istream_iterator< __ISI_TMPL_ARGUMENTS >& __y) {
return __x._M_equal(__y);
}
# ifdef __STL_USE_SEPARATE_RELOPS_NAMESPACE
template < __ISI_TMPL_HEADER_ARGUMENTS >
inline bool
operator!=(const istream_iterator< __ISI_TMPL_ARGUMENTS >& __x,
const istream_iterator< __ISI_TMPL_ARGUMENTS >& __y) {
return !__x._M_equal(__y);
}
# endif /* __STL_USE_SEPARATE_RELOPS_NAMESPACE */
# ifndef __STL_CLASS_PARTIAL_SPECIALIZATION
template < __ISI_TMPL_HEADER_ARGUMENTS >
inline input_iterator_tag
iterator_category(const istream_iterator< __ISI_TMPL_ARGUMENTS >&)
{
return input_iterator_tag();
}
template < __ISI_TMPL_HEADER_ARGUMENTS >
inline _Tp*
value_type(const istream_iterator< __ISI_TMPL_ARGUMENTS >&) { return (_Tp*) 0; }
# if defined (__STL_MINIMUM_DEFAULT_TEMPLATE_PARAMS) && ! defined (__STL_DEFAULT_TYPE_PARAM)
template < __ISI_TMPL_HEADER_ARGUMENTS >
inline ptrdiff_t*
distance_type(const istream_iterator< __ISI_TMPL_ARGUMENTS >&) { return (ptrdiff_t*)0; }
# else
template < __ISI_TMPL_HEADER_ARGUMENTS >
inline _Dist*
distance_type(const istream_iterator< __ISI_TMPL_ARGUMENTS >&) { return (_Dist*)0; }
# endif /* __STL_MINIMUM_DEFAULT_TEMPLATE_PARAMS */
# endif /* __STL_CLASS_PARTIAL_SPECIALIZATION */
# endif /* (!defined(__STL_USE_NAMESPACES) || defined (__STL_USE_OWN_NAMESPACE)) */
__STL_END_NAMESPACE
# undef __ISI_TMPL_HEADER_ARGUMENTS
# undef __ISI_TMPL_ARGUMENTS
# if !defined (__STL_LINK_TIME_INSTANTIATION)
# include <stl_iterator.c>
# endif
#endif /* __SGI_STL_INTERNAL_ITERATOR_H */
// Local Variables:
// mode:C++
// End:
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -